summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-29 04:16:17 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-29 04:16:17 +0000
commitf10e2af1e68392fff2e22e1f577ad2fb828f2d75 (patch)
treeb54148386a0cb65054b5d6f387254b2051c408ae /lib
parentf226c386308b749cd44dd02b1100a65ad588484b (diff)
* lib/securerandom.rb (SecureRandom.uuid): uses unpacked array
instead of string, because String#[] returns one length string. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21872 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/securerandom.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/securerandom.rb b/lib/securerandom.rb
index 0582cee722..e317c4c459 100644
--- a/lib/securerandom.rb
+++ b/lib/securerandom.rb
@@ -169,11 +169,9 @@ module SecureRandom
# SecureRandom.uuid generates a v4 random UUID.
def self.uuid
- str = self.random_bytes(16)
- str[6] = (str[6] & 0x0f) | 0x40
- str[8] = (str[8] & 0x3f) | 0x80
-
- ary = str.unpack("NnnnnN")
+ ary = self.random_bytes(16).unpack("NnnnnN")
+ ary[2] = (ary[2] & 0x0fff) | 0x4000
+ ary[3] = (ary[3] & 0x3fff) | 0x8000
"%08x-%04x-%04x-%04x-%04x%08x" % ary
end