Sha256: f9c7978f97dde84ae3e9495c821700241cfbffa1075dc0f18d96ce84a0e28d55

Contents?: true

Size: 1.39 KB

Versions: 5

Compression:

Stored size: 1.39 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/none'
require 'test/unit'

class TC_HMAC_None < Test::Unit::TestCase

  def setup
    @hmac = Net::SSH::Transport::OSSL::HMAC::None.new.new( "12345678901234567890" )
  end

  def test_key
    assert_equal "", @hmac.key
  end

  def test_key_length
    assert_equal 0, @hmac.key_length
  end

  def test_mac_length
    assert_equal 0, @hmac.mac_length
  end

  def test_digest_class
    assert_nil @hmac.digest_class
  end

  def test_digest
    expect = ""
    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

Version Path
net-ssh-0.9.0 test/transport/ossl/hmac/tc_none.rb
net-ssh-1.0.1 test/transport/ossl/hmac/tc_none.rb
net-ssh-1.0.0 test/transport/ossl/hmac/tc_none.rb
net-ssh-1.0.2 test/transport/ossl/hmac/tc_none.rb
net-ssh-1.0.3 test/transport/ossl/hmac/tc_none.rb