Sha256: d89ad75514176f7cf615bfec3e44e90ced3a4ca11dc2f44ca279bf59c1235d97

Contents?: true

Size: 1.08 KB

Versions: 9

Compression:

Stored size: 1.08 KB

Contents

require File.expand_path('../shared/constants', __FILE__)

describe "Digest::SHA512#digest" do

  it "returns a digest" do
    cur_digest = Digest::SHA512.new
    cur_digest.digest().should == SHA512Constants::BlankDigest

    # add something to check that the state is reset later
    cur_digest << "test"

    cur_digest.digest(SHA512Constants::Contents).should == SHA512Constants::Digest
    # second invocation is intentional, to make sure there are no side-effects
    cur_digest.digest(SHA512Constants::Contents).should == SHA512Constants::Digest

    # after all is done, verify that the digest is in the original, blank state
    cur_digest.digest.should == SHA512Constants::BlankDigest
  end

end

describe "Digest::SHA512.digest" do

  it "returns a digest" do
    Digest::SHA512.digest(SHA512Constants::Contents).should == SHA512Constants::Digest
    # second invocation is intentional, to make sure there are no side-effects
    Digest::SHA512.digest(SHA512Constants::Contents).should == SHA512Constants::Digest
    Digest::SHA512.digest("").should == SHA512Constants::BlankDigest
  end

end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
rubysl-digest-2.1 spec/sha512/digest_spec.rb
rubysl-digest-1.2.0 spec/sha512/digest_spec.rb
rubysl-digest-1.1.0 spec/sha512/digest_spec.rb
rubysl-digest-2.0.8 spec/sha512/digest_spec.rb
rubysl-digest-2.0.7 spec/sha512/digest_spec.rb
rubysl-digest-1.0.1 spec/sha512/digest_spec.rb
rubysl-digest-2.0.3 spec/sha512/digest_spec.rb
rubysl-digest-1.0.0 spec/sha512/digest_spec.rb
rubysl-digest-2.0.2 spec/sha512/digest_spec.rb