summaryrefslogtreecommitdiff
path: root/spec/ruby/library/openssl/hmac/digest_spec.rb
blob: 03ed136e641ff2891c420ef25d04302811b6e077 (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.digest" do
  it "returns an SHA1 digest" do
    cur_digest = OpenSSL::Digest.new("SHA1")
    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