class: RandomParkMiller
authorClaus Gittinger <cg@exept.de>
Wed, 01 Oct 2014 14:48:00 +0200
changeset 3349 7a8dd594971d
parent 3348 d8e779ae0ab1
child 3350 5e41f01f4dbb
class: RandomParkMiller comment/format in: #documentation
RandomParkMiller.st
--- a/RandomParkMiller.st	Wed Oct 01 14:47:34 2014 +0200
+++ b/RandomParkMiller.st	Wed Oct 01 14:48:00 2014 +0200
@@ -25,6 +25,8 @@
     In particular, bit aliasing occurs during the calculation of the next random value, 
     and bit 22 of the mantissa is always 1.
 
+    Warning: this generator should not be used for cryptographic work.
+
     Please read:
         Standard reference by Park and Miller in 
             'Random Number Generators: Good Ones Are Hard to Find',
@@ -135,11 +137,11 @@
 !RandomParkMiller class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/RandomParkMiller.st,v 1.5 2014-10-01 11:12:17 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/RandomParkMiller.st,v 1.6 2014-10-01 12:48:00 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/RandomParkMiller.st,v 1.5 2014-10-01 11:12:17 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/RandomParkMiller.st,v 1.6 2014-10-01 12:48:00 cg Exp $'
 ! !