File: test_sha2_512.rb

package info (click to toggle)
ruby-net-ssh 1%3A6.1.0-2%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,884 kB
  • sloc: ruby: 15,997; makefile: 4
file content (42 lines) | stat: -rw-r--r-- 1,155 bytes parent folder | download
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# encoding: ASCII-8BIT

require 'common'
require 'net/ssh/transport/hmac/sha2_512'

module Transport
  module HMAC

    class TestSHA2_512 < NetSSHTest
      def test_expected_digest_class
        assert_equal OpenSSL::Digest::SHA512, subject.digest_class
        assert_equal OpenSSL::Digest::SHA512, subject.new.digest_class
      end

      def test_expected_key_length
        assert_equal 64, subject.key_length
        assert_equal 64, subject.new.key_length
      end

      def test_expected_mac_length
        assert_equal 64, subject.mac_length
        assert_equal 64, subject.new.mac_length
      end

      def test_expected_etm
        assert_equal false, subject.etm
        assert_equal false, subject.new.etm
      end

      def test_expected_digest
        hmac = subject.new("1234567890123456")
        assert_equal "^\xB6\"\xED\x8B\xC4\xDE\xD4\xCF\xD0\r\x18\xA0<\xF4\xB5\x01Efz\xA80i\xFC\x18\xC1\x9A+\xDD\xFE<\xA2\xFDE1Ac\xF4\xADU\r\xFB^0\x90= \x837z\xCC\xD5p4a4\x83\xC6\x04m\xAA\xC1\xC0m", hmac.digest("hello world")
      end

      private

      def subject
        Net::SSH::Transport::HMAC::SHA2_512
      end
    end
  end
end