diff options
author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-10-20 13:01:55 +0000 |
---|---|---|
committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-10-20 13:01:55 +0000 |
commit | 670887f5f697c57a61fa837d4cf505d3d18a0bc6 (patch) | |
tree | d49eb6fa182be04d42d1243f0781384bbc751518 /ext/digest/lib | |
parent | b2c7fe1bbffe9e5fe741b7dd3725017b55250c1e (diff) | |
download | ruby-670887f5f697c57a61fa837d4cf505d3d18a0bc6.tar.gz |
* ext/digest/lib/digest/hmac.rb: Complete half-boiled updates.
* ext/digest/sha2/lib/digest/sha2.rb: Fix #initialize_clone().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11198 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/digest/lib')
-rw-r--r-- | ext/digest/lib/digest/hmac.rb | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/ext/digest/lib/digest/hmac.rb b/ext/digest/lib/digest/hmac.rb index b542a23577..1177884184 100644 --- a/ext/digest/lib/digest/hmac.rb +++ b/ext/digest/lib/digest/hmac.rb @@ -63,22 +63,23 @@ module Digest end def initialize_copy(other) - @md = @md.new + @md = other.instance_eval { @md.clone } end def update(text) @md.reset.update(@opad + @md.digest(@ipad + text)) - self end def reset @md.reset + self end - def digest - @md.digest + def finish + @md.digest! end + private :finish def digest_length @md.digest_length @@ -89,7 +90,7 @@ module Digest end def inspect - sprintf('#<%s: key=%s, digest=%s: %s>', self.class.name, @key.inspect, @tmp_md.reset.inspect, hexdigest()); + sprintf('#<%s: key=%s, digest=%s>', self.class.name, @key.inspect, @md.inspect.sub(/^\#<(.*)>$/) { $1 }); end end end @@ -105,7 +106,7 @@ require 'test/unit' module TM_HMAC def test_s_hexdigest cases.each { |h| - digesters { |d| + digesters.each { |d| assert_equal(h[:hexdigest], Digest::HMAC.hexdigest(h[:data], h[:key], d)) } } @@ -113,7 +114,7 @@ module TM_HMAC def test_hexdigest cases.each { |h| - digesters { |d| + digesters.each { |d| hmac = Digest::HMAC.new(h[:key], d) hmac.update(h[:data]) @@ -125,7 +126,7 @@ module TM_HMAC def test_reset cases.each { |h| - digesters { |d| + digesters.each { |d| hmac = Digest::HMAC.new(h[:key], d) hmac.update("test") hmac.reset |