hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit a000d7f05ffa98ca488aa5390fed43666592a398
parent 844b431cae737915c9a370c38c15a6acf8dd9424
Author: Sebastian <sebastian@sebsite.pw>
Date:   Thu, 21 Apr 2022 15:43:28 -0400

crypto::random: add README

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Acrypto/random/README | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/crypto/random/README b/crypto/random/README @@ -0,0 +1,5 @@ +crypto::random provides a cryptographically secure random number generator, +which yields a nondeterministic sequence of random numbers. + +If true randomness isn't required for your use case, you may be better off using +[[math::random]]'s pseudorandom number generator.