diff options
Diffstat (limited to 'lib/std/sysrand.nim')
-rw-r--r-- | lib/std/sysrand.nim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/std/sysrand.nim b/lib/std/sysrand.nim index 5ccbd21be..603c132e8 100644 --- a/lib/std/sysrand.nim +++ b/lib/std/sysrand.nim @@ -7,6 +7,10 @@ # distribution, for details about the copyright. # +## .. warning:: This module was added in Nim 1.6. If you are using it for cryptographic purposes, +## keep in mind that so far this has not been audited by any security professionals, +## therefore may not be secure. +## ## `std/sysrand` generates random numbers from a secure source provided by the operating system. ## It is also called Cryptographically secure pseudorandom number generator. ## It should be unpredictable enough for cryptographic applications, |