Sha256: 25a597a214d61f2560d76ca53ffed9d961a9d5012b1001175a0207148bb6e890
Contents?: true
Size: 1.6 KB
Versions: 5
Compression:
Stored size: 1.6 KB
Contents
#-- # ============================================================================= # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu) # 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 "../../../../lib" require 'net/ssh/transport/ossl/hmac/hmac' require 'test/unit' class TC_HMAC < Test::Unit::TestCase class MockHMAC < Net::SSH::Transport::OSSL::HMAC::Abstract def initialize @mac_length = 10 @key_length = 8 @digest_class = OpenSSL::Digest::MD5 end end def setup @hmac = MockHMAC.new.new( "12345678901234567890" ) end def test_key assert_equal "12345678", @hmac.key end def test_key_length assert_equal 8, @hmac.key_length end def test_mac_length assert_equal 10, @hmac.mac_length end def test_digest_class assert_equal OpenSSL::Digest::MD5, @hmac.digest_class end def test_digest expect = "\221r\262\202\210\234\346 \242 " assert_equal expect, @hmac.digest( "To be, or not to be, that is the question" ) end end
Version data entries
5 entries across 5 versions & 1 rubygems