diff options
author | Araq <rumpf_a@web.de> | 2017-01-07 00:30:09 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2017-01-07 00:31:03 +0100 |
commit | 5a64e1a53145699f2dfdf86b0c8c3c87ddf2cd8a (patch) | |
tree | 7c104b69ce0a77e600d523f4ad9d7201ac8e999e /lib | |
parent | edf2a57a70486306054892dfc6cec77afcbb532f (diff) | |
download | Nim-5a64e1a53145699f2dfdf86b0c8c3c87ddf2cd8a.tar.gz |
random.nim: add a warning about crypo; refs #5047
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/random.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/pure/random.nim b/lib/pure/random.nim index 955a70143..67f085dac 100644 --- a/lib/pure/random.nim +++ b/lib/pure/random.nim @@ -11,6 +11,7 @@ ## * More information: http://xoroshiro.di.unimi.it/ ## * C implementation: http://xoroshiro.di.unimi.it/xoroshiro128plus.c ## +## Do not use this module for cryptographic use! include "system/inclrtl" {.push debugger:off.} |