File: test_sha1_96.rb

package info (click to toggle)
ruby-net-ssh 1%3A7.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,804 kB
  • sloc: ruby: 16,999; makefile: 5
file content (27 lines) | stat: -rw-r--r-- 601 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# encoding: ASCII-8BIT

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