summaryrefslogtreecommitdiff
path: root/lib/securerandom.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-31 05:07:56 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-31 05:07:56 +0000
commit7a4feec795ac8622edd099ed8b82b6230dc031be (patch)
tree1b4e615e65d0317dc40b19cc774426b07abae8ff /lib/securerandom.rb
parent9eb141196b0111e12e7d54407bc30bbe3123a787 (diff)
* lib/securerandom.rb (random_bytes): Use Process.clock_gettime.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42740 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/securerandom.rb')
-rw-r--r--lib/securerandom.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/securerandom.rb b/lib/securerandom.rb
index cc33a08044..b1603b4ca9 100644
--- a/lib/securerandom.rb
+++ b/lib/securerandom.rb
@@ -54,8 +54,8 @@ module SecureRandom
@pid = 0 unless defined?(@pid)
pid = $$
unless @pid == pid
- now = Time.now
- ary = [now.to_i, now.nsec, @pid, pid]
+ now = Process.clock_gettime(Process::CLOCK_REALTIME, :nanosecond)
+ ary = [now, @pid, pid]
OpenSSL::Random.random_add(ary.join("").to_s, 0.0)
@pid = pid
end