Sha256: cc70dbd65370c8739cc0de643e94815954429abcc04747997d894355e758007a
Contents?: true
Size: 580 Bytes
Versions: 24
Compression:
Stored size: 580 Bytes
Contents
require 'common' require 'transport/hmac/test_sha2_512' require 'net/ssh/transport/hmac/sha2_512_96' module Transport; module HMAC class TestSHA2_512_96 < TestSHA2_512 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 "^\xB6\"\xED\x8B\xC4\xDE\xD4\xCF\xD0\r\x18", hmac.digest("hello world") end private def subject Net::SSH::Transport::HMAC::SHA2_512_96 end end end; end
Version data entries
24 entries across 24 versions & 8 rubygems