File: test_ripemd160.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 (36 lines) | stat: -rw-r--r-- 928 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
# encoding: ASCII-8BIT

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

module Transport
  module HMAC
    class TestRipemd160 < NetSSHTest
      def test_expected_digest_class
        assert_equal OpenSSL::Digest::RIPEMD160, subject.digest_class
        assert_equal OpenSSL::Digest::RIPEMD160, subject.new.digest_class
      end

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

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

      def test_expected_digest
        hmac = subject.new("1234567890123456")
        assert_equal "\xE4\x10\t\xB3\xD8,\x14\xA0k\x10\xB5\x0F?\x0E\x96q\x02\x16;E", hmac.digest("hello world")
      end

      private

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