public
Description: Pure Ruby implementation of an SSH (protocol 2) client
Homepage: http://rubyforge.org/projects/net-ssh
Clone URL: git://github.com/jamis/net-ssh.git
commit  b42295ad9b4b778a1fecf3aa6fee4bf5091fac12
tree    da3968d3d9eb712ae0174f2c094252ec724c35b1
parent  83a43136fed5ef5f6dae7b0762c16615749023d1
net-ssh / test / transport / hmac / test_md5.rb
100644 39 lines (30 sloc) 0.99 kb
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
require 'common'
require 'net/ssh/transport/hmac/md5'
 
module Transport; module HMAC
 
  class TestMD5 < Test::Unit::TestCase
    def test_expected_digest_class
      assert_equal OpenSSL::Digest::MD5, subject.digest_class
      assert_equal OpenSSL::Digest::MD5, subject.new.digest_class
    end
 
    def test_expected_key_length
      assert_equal 16, subject.key_length
      assert_equal 16, subject.new.key_length
    end
 
    def test_expected_mac_length
      assert_equal 16, subject.mac_length
      assert_equal 16, subject.new.mac_length
    end
 
    def test_expected_digest
      hmac = subject.new("1234567890123456")
      assert_equal "\275\345\006\307y~Oi\035<.\341\031\250<\257", hmac.digest("hello world")
    end
 
    def test_key_should_be_truncated_to_required_length
      hmac = subject.new("12345678901234567890")
      assert_equal "1234567890123456", hmac.key
    end
 
    private
 
      def subject
        Net::SSH::Transport::HMAC::MD5
      end
  end
 
end; end