diff options
Diffstat (limited to 'spec/rubyspec/library/openssl/hmac')
-rw-r--r-- | spec/rubyspec/library/openssl/hmac/digest_spec.rb | 16 | ||||
-rw-r--r-- | spec/rubyspec/library/openssl/hmac/hexdigest_spec.rb | 16 |
2 files changed, 0 insertions, 32 deletions
diff --git a/spec/rubyspec/library/openssl/hmac/digest_spec.rb b/spec/rubyspec/library/openssl/hmac/digest_spec.rb deleted file mode 100644 index 36edee87bd..0000000000 --- a/spec/rubyspec/library/openssl/hmac/digest_spec.rb +++ /dev/null @@ -1,16 +0,0 @@ -require File.expand_path('../../../../spec_helper', __FILE__) -require File.expand_path('../../shared/constants', __FILE__) -require 'openssl' - -describe "OpenSSL::HMAC.digest" do - it "returns an SHA1 digest" do - cur_digest = OpenSSL::Digest::SHA1.new - cur_digest.digest.should == HMACConstants::BlankSHA1Digest - digest = OpenSSL::HMAC.digest(cur_digest, - HMACConstants::Key, - HMACConstants::Contents) - digest.should == HMACConstants::SHA1Digest - end -end - -# Should add in similar specs for MD5, RIPEMD160, and SHA256 diff --git a/spec/rubyspec/library/openssl/hmac/hexdigest_spec.rb b/spec/rubyspec/library/openssl/hmac/hexdigest_spec.rb deleted file mode 100644 index b61bcf6a8f..0000000000 --- a/spec/rubyspec/library/openssl/hmac/hexdigest_spec.rb +++ /dev/null @@ -1,16 +0,0 @@ -require File.expand_path('../../../../spec_helper', __FILE__) -require File.expand_path('../../shared/constants', __FILE__) -require 'openssl' - -describe "OpenSSL::HMAC.hexdigest" do - it "returns an SHA1 hex digest" do - cur_digest = OpenSSL::Digest::SHA1.new - cur_digest.hexdigest.should == HMACConstants::BlankSHA1HexDigest - hexdigest = OpenSSL::HMAC.hexdigest(cur_digest, - HMACConstants::Key, - HMACConstants::Contents) - hexdigest.should == HMACConstants::SHA1Hexdigest - end -end - -# Should add in similar specs for MD5, RIPEMD160, and SHA256 |