aboutsummaryrefslogtreecommitdiffstats
path: root/lib/securerandom.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/securerandom.rb')
-rw-r--r--lib/securerandom.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/securerandom.rb b/lib/securerandom.rb
index f53087b954..b08b62b746 100644
--- a/lib/securerandom.rb
+++ b/lib/securerandom.rb
@@ -56,6 +56,10 @@ module SecureRandom
now = Process.clock_gettime(Process::CLOCK_REALTIME, :nanosecond)
ary = [now, @pid, pid]
OpenSSL::Random.random_add(ary.join("").to_s, 0.0)
+ seed = Random.raw_seed(16)
+ if (seed)
+ OpenSSL::Random.random_add(seed, 16)
+ end
@pid = pid
end
return OpenSSL::Random.random_bytes(n)