Sha256: 3e82903261380de54801dce317da3d55d79c036898abf7faf4c57cd7139270a9

Contents?: true

Size: 900 Bytes

Versions: 69

Compression:

Stored size: 900 Bytes

Contents

# encoding: ASCII-8BIT

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

module Transport; module HMAC

  class TestRipemd160 < Test::Unit::TestCase
    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

Version data entries

69 entries across 59 versions & 9 rubygems

Version Path
net-ssh-2.9.4 test/transport/hmac/test_ripemd160.rb
vagrant-unbundled-1.8.1.1 vendor/bundle/ruby/2.3.0/gems/net-ssh-3.0.2/test/transport/hmac/test_ripemd160.rb
net-ssh-3.0.2 test/transport/hmac/test_ripemd160.rb
net-ssh-3.0.2.rc1 test/transport/hmac/test_ripemd160.rb
net-ssh-2.9.4.rc1 test/transport/hmac/test_ripemd160.rb
sc_core-0.0.7 test/dummy/vendor/bundle/ruby/2.2.0/gems/net-ssh-3.0.1/test/transport/hmac/test_ripemd160.rb
net-ssh-3.0.1 test/transport/hmac/test_ripemd160.rb
net-ssh-3.0.1.rc1 test/transport/hmac/test_ripemd160.rb
net-ssh-3.0.0.rc1 test/transport/hmac/test_ripemd160.rb
net-ssh-2.10.1.rc2 test/transport/hmac/test_ripemd160.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/net-ssh-2.9.2/test/transport/hmac/test_ripemd160.rb
net-ssh-2.10.1.rc1 test/transport/hmac/test_ripemd160.rb
net-ssh-2.10.0.beta2 test/transport/hmac/test_ripemd160.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/net-ssh-2.9.2/test/transport/hmac/test_ripemd160.rb
net-ssh-2.10.0.beta1 test/transport/hmac/test_ripemd160.rb
net-ssh-2.9.3.beta1 test/transport/hmac/test_ripemd160.rb
net-ssh-2.9.2 test/transport/hmac/test_ripemd160.rb
net-ssh-2.9.2.rc3 test/transport/hmac/test_ripemd160.rb
net-ssh-2.9.2.rc2 test/transport/hmac/test_ripemd160.rb
net-ssh-2.9.2.rc1 test/transport/hmac/test_ripemd160.rb