Host solo docs directly at docs.solokeys.{dev,io}

This commit is contained in:
Nicolas Stalder
2020-06-09 23:57:29 +02:00
parent cc4cd340da
commit c52af54e8f
23 changed files with 35 additions and 35 deletions

19
docs/solo-extras.md Normal file
View File

@@ -0,0 +1,19 @@
# Solo Extras
## Random number generation
Solo contains a True Random Number Generator (TRNG). A TRNG is a hardware based mechanism
that leverages natural phenomenon to generate random numbers, which can be better than a traditional
RNG that has state and updates deterministically using cryptographic methods.
You can easily access the TRNG stream on Solo using our python tool [`solo-python`](https://github.com/solokeys/solo-python).
```
solo key rng raw > random.bin
```
Or you can seed the state of the RNG on your kernel (`/dev/random`).
```
solo key rng feedkernel
```