blob: 7f73b2db09c9df4251fb27557de44248731d546a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require_relative '../../../spec_helper'
require_relative '../shared/constants'
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
|