Random.st
changeset 3776 d1412e4f5779
parent 3750 54c47e28047d
child 3781 36ed064deb4e
--- a/Random.st	Thu Mar 24 12:50:35 2016 +0100
+++ b/Random.st	Thu Mar 24 13:58:08 2016 +0100
@@ -77,6 +77,11 @@
     =======================================================================================
     DO NOT USE THIS GENERATOR FOR CRYPTOGRAPHY OR OTHER SECURITY RELATED WORK, 
     because linear congruential generators are predictable and can be broken easily!!
+
+    Smalltalk/X includes a better generator named RandomGenerator, which uses the best
+    available generator of the system (either OS-random, /dev/random or as a less dangerous
+    fallback, an RC4-based random generator.
+    Please use that one.
     =======================================================================================
 
     Notice: although being included here,