aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/openssl/hmac/hexdigest_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/library/openssl/hmac/hexdigest_spec.rb')
-rw-r--r--spec/rubyspec/library/openssl/hmac/hexdigest_spec.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/spec/rubyspec/library/openssl/hmac/hexdigest_spec.rb b/spec/rubyspec/library/openssl/hmac/hexdigest_spec.rb
new file mode 100644
index 0000000000..b61bcf6a8f
--- /dev/null
+++ b/spec/rubyspec/library/openssl/hmac/hexdigest_spec.rb
@@ -0,0 +1,16 @@
+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