Sha256: 212bbfc9a225df1ce04bd29405924f44e212b45b3666da9af39fea3912ff9efb
Contents?: true
Size: 554 Bytes
Versions: 174
Compression:
Stored size: 554 Bytes
Contents
require 'common' require 'transport/hmac/test_sha1' require 'net/ssh/transport/hmac/sha1_96' module Transport; module HMAC class TestSHA1_96 < TestSHA1 def test_expected_mac_length assert_equal 12, subject.mac_length assert_equal 12, subject.new.mac_length end def test_expected_digest hmac = subject.new("1234567890123456") assert_equal "\000\004W\202\204+&\335\311\251P\266", hmac.digest("hello world") end private def subject Net::SSH::Transport::HMAC::SHA1_96 end end end; end
Version data entries
174 entries across 144 versions & 20 rubygems