diff options
-rw-r--r-- | lib/securerandom.rb | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -72,8 +72,11 @@ module SecureRandom ret end - ret = Random.urandom(1) - if ret.nil? begin require 'openssl' rescue NoMethodError @@ -81,8 +84,6 @@ module SecureRandom else alias gen_random gen_random_openssl end - else - alias gen_random gen_random_urandom end public :gen_random |