Sha256: d6bdf889f0d384b7d172520d451f4518f24cef8e6f47da4f6e3fabe3ccd8dde3
Contents?: true
Size: 563 Bytes
Versions: 24
Compression:
Stored size: 563 Bytes
Contents
require 'common' require 'transport/hmac/test_sha2_256' require 'net/ssh/transport/hmac/sha2_256_96' module Transport; module HMAC class TestSHA2_256_96 < TestSHA2_256 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 "\x16^>\x9FhO}\xB1>(\xBAF", hmac.digest("hello world") end private def subject Net::SSH::Transport::HMAC::SHA2_256_96 end end end; end
Version data entries
24 entries across 24 versions & 8 rubygems