File: test_sha2_256.rb

package info (click to toggle)
ruby-net-ssh 1%3A2.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,484 kB
  • ctags: 1,862
  • sloc: ruby: 12,621; makefile: 2
file content (37 lines) | stat: -rw-r--r-- 917 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
28
29
30
31
32
33
34
35
36
37
# encoding: ASCII-8BIT

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

module Transport; module HMAC

  class TestSHA2_256 < Test::Unit::TestCase
    def test_expected_digest_class
      assert_equal OpenSSL::Digest::SHA256, subject.digest_class
      assert_equal OpenSSL::Digest::SHA256, subject.new.digest_class
    end

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

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

    def test_expected_digest
      hmac = subject.new("1234567890123456")
      assert_equal "\x16^>\x9FhO}\xB1>(\xBAF\xFBW\xB8\xF2\xFA\x824+\xC0\x94\x95\xC2\r\xE6\x88/\xEF\t\xF5%", hmac.digest("hello world")

    end

    private

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

end; end