Sha256: c33d527b43b8146088c2ed4b86376d43b037dcfb67ed3d94cc1a13641dcbf35f

Contents?: true

Size: 893 Bytes

Versions: 24

Compression:

Stored size: 893 Bytes

Contents

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

Version data entries

24 entries across 24 versions & 8 rubygems

Version Path
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/net-ssh-2.4.0/test/transport/hmac/test_sha2_256.rb
vagrant-shell-0.2.9 demo/templates/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.7/test/transport/hmac/test_sha2_256.rb
vagrant-shell-0.2.8 demo/templates/vendor/bundle/ruby/1.9.1/gems/net-ssh-2.6.7/test/transport/hmac/test_sha2_256.rb
minmb-net-ssh-2.5.1 test/transport/hmac/test_sha2_256.rb
vagrant-shell-0.2.6 vendor/bundle/gems/net-ssh-2.6.7/test/transport/hmac/test_sha2_256.rb
vagrant-shell-0.2.5 vendor/bundle/gems/net-ssh-2.6.7/test/transport/hmac/test_sha2_256.rb
net-ssh-2.6.7 test/transport/hmac/test_sha2_256.rb
net-ssh-2.6.6 test/transport/hmac/test_sha2_256.rb
net-ssh-2.6.5 test/transport/hmac/test_sha2_256.rb
net-ssh-2.6.4 test/transport/hmac/test_sha2_256.rb
net-ssh-2.6.3 test/transport/hmac/test_sha2_256.rb
net-ssh-2.6.2 test/transport/hmac/test_sha2_256.rb
abiquo-installer-tests-20121026.1 vendor/net-ssh-2.5.2/test/transport/hmac/test_sha2_256.rb
abiquo-installer-tests-20121023.3 vendor/net-ssh-2.5.2/test/transport/hmac/test_sha2_256.rb
net-ssh-2.6.1 test/transport/hmac/test_sha2_256.rb
sonixlabs-net-ssh-2.3.0 test/transport/hmac/test_sha2_256.rb
k-yamada-net-ssh-2.3.0 test/transport/hmac/test_sha2_256.rb
net-ssh-2.6.0 test/transport/hmac/test_sha2_256.rb
net-ssh-2.5.2 test/transport/hmac/test_sha2_256.rb
net-ssh-2.5.1 test/transport/hmac/test_sha2_256.rb