1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2024-12-23 15:18:11 +00:00

Suggestion for adding 'pseudo random number generation' again, and grammatical mistakes.

This commit is contained in:
Minh T. Nguyen 2014-05-01 07:50:39 -07:00
parent 1006c1b9a0
commit 3faecdce30

View File

@ -29,7 +29,7 @@ A private key is a number, between +1+ and +n - 1+ where latexmath:[\(n = 1.158
[TIP]
====
Do not try and design your own pseudo random number generator (PRNG). Use a cryptographically-secure (CSPRNG) with a seed from a source of sufficient entropy, the choice of which which depends on you operating-system. Correct implementation of the CSPRNG is critical to the security of the keys. DIY is highly discouraged unless you are a professional cryptographer.
Do not try and design your own pseudo random number generator (PRNG). Use a cryptographically-secure pseudo-random number generator (CSPRNG) with a seed from a source of sufficient entropy, the choice of which depends on your operating-system. Correct implementation of the CSPRNG is critical to the security of the keys. DIY is highly discouraged unless you are a professional cryptographer.
====