Sha256: 5ce6905477d2644d67086aabca1f13c3b0737bd4c8e1308d638d50c9b3e7dde8
Contents?: true
Size: 1.5 KB
Versions: 12
Compression:
Stored size: 1.5 KB
Contents
#-- # ============================================================================= # Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com) # All rights reserved. # # This source file is distributed as part of the Net::SSH Secure Shell Client # library for Ruby. This file (and the library as a whole) may be used only as # allowed by either the BSD license, or the Ruby license (or, by association # with the Ruby license, the GPL). See the "doc" subdirectory of the Net::SSH # distribution for the texts of these licenses. # ----------------------------------------------------------------------------- # net-ssh website : http://net-ssh.rubyforge.org # project website: http://rubyforge.org/projects/net-ssh # ============================================================================= #++ $:.unshift "#{File.dirname(__FILE__)}/../../../../lib" require 'net/ssh/transport/ossl/hmac/md5-96' require 'test/unit' class TC_HMAC_MD5_96 < Test::Unit::TestCase def setup @hmac = Net::SSH::Transport::OSSL::HMAC::MD5_96.new.new( "1234567890123456789012345" ) end def test_key assert_equal "1234567890123456", @hmac.key end def test_key_length assert_equal 16, @hmac.key_length end def test_mac_length assert_equal 12, @hmac.mac_length end def test_digest_class assert_equal OpenSSL::Digest::MD5, @hmac.digest_class end def test_digest expect = "\242\214\260\003\320q\214i%\306\rG" assert_equal expect, @hmac.digest( "To be, or not to be, that is the question" ) end end
Version data entries
12 entries across 12 versions & 1 rubygems