Sha256: f25ef373b013321351aa997ab2a2b001557290958e94e86c2f82483d12dab5f5

Contents?: true

Size: 1.9 KB

Versions: 123

Compression:

Stored size: 1.9 KB

Contents

require 'net/ssh/transport/key_expander'
require 'net/ssh/transport/hmac/md5'
require 'net/ssh/transport/hmac/md5_96'
require 'net/ssh/transport/hmac/sha1'
require 'net/ssh/transport/hmac/sha1_96'
require 'net/ssh/transport/hmac/sha2_256'
require 'net/ssh/transport/hmac/sha2_256_96'
require 'net/ssh/transport/hmac/sha2_512'
require 'net/ssh/transport/hmac/sha2_512_96'
require 'net/ssh/transport/hmac/ripemd160'
require 'net/ssh/transport/hmac/none'

# Implements a simple factory interface for fetching hmac implementations, or
# for finding the key lengths for hmac implementations.s
module Net::SSH::Transport::HMAC
  # The mapping of SSH hmac algorithms to their implementations
  MAP = {
    'hmac-md5'       => MD5,
    'hmac-md5-96'    => MD5_96,
    'hmac-sha1'      => SHA1,
    'hmac-sha1-96'   => SHA1_96,
    'hmac-ripemd160' => RIPEMD160,
    'hmac-ripemd160@openssh.com' => RIPEMD160,
    'none'           => None
  }

  # add mapping to sha2 hmac algorithms if they're available
  MAP['hmac-sha2-256']    = SHA2_256    if defined?(::Net::SSH::Transport::HMAC::SHA2_256)
  MAP['hmac-sha2-256-96'] = SHA2_256_96 if defined?(::Net::SSH::Transport::HMAC::SHA2_256_96)
  MAP['hmac-sha2-512']    = SHA2_512    if defined?(::Net::SSH::Transport::HMAC::SHA2_512)
  MAP['hmac-sha2-512-96'] = SHA2_512_96 if defined?(::Net::SSH::Transport::HMAC::SHA2_512_96)

  # Retrieves a new hmac instance of the given SSH type (+name+). If +key+ is
  # given, the new instance will be initialized with that key.
  def self.get(name, key="", parameters = {})
    impl = MAP[name] or raise ArgumentError, "hmac not found: #{name.inspect}"
    impl.new(Net::SSH::Transport::KeyExpander.expand_key(impl.key_length, key, parameters))
  end

  # Retrieves the key length for the hmac of the given SSH type (+name+).
  def self.key_length(name)
    impl = MAP[name] or raise ArgumentError, "hmac not found: #{name.inspect}"
    impl.key_length
  end
end

Version data entries

123 entries across 110 versions & 13 rubygems

Version Path
net-ssh-2.9.4.rc1 lib/net/ssh/transport/hmac.rb
sc_core-0.0.7 test/dummy/vendor/bundle/ruby/2.2.0/gems/net-ssh-3.0.1/lib/net/ssh/transport/hmac.rb
net-ssh-3.0.1 lib/net/ssh/transport/hmac.rb
net-ssh-3.0.1.rc1 lib/net/ssh/transport/hmac.rb
net-ssh-3.0.0.rc1 lib/net/ssh/transport/hmac.rb
net-ssh-2.10.1.rc2 lib/net/ssh/transport/hmac.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/net-ssh-2.9.2/lib/net/ssh/transport/hmac.rb
net-ssh-2.10.1.rc1 lib/net/ssh/transport/hmac.rb
net-ssh-2.10.0.beta2 lib/net/ssh/transport/hmac.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/net-ssh-2.9.2/lib/net/ssh/transport/hmac.rb
net-ssh-2.10.0.beta1 lib/net/ssh/transport/hmac.rb
net-ssh-2.9.3.beta1 lib/net/ssh/transport/hmac.rb
net-ssh-2.9.2 lib/net/ssh/transport/hmac.rb
net-ssh-2.9.2.rc3 lib/net/ssh/transport/hmac.rb
net-ssh-2.9.2.rc2 lib/net/ssh/transport/hmac.rb
net-ssh-2.9.2.rc1 lib/net/ssh/transport/hmac.rb
net-ssh-2.9.2.beta lib/net/ssh/transport/hmac.rb
vagrant-tiktalik-0.0.3 vendor/bundle/ruby/2.0.0/gems/net-ssh-2.9.1/lib/net/ssh/transport/hmac.rb
net-ssh-2.9.1 lib/net/ssh/transport/hmac.rb
net-ssh-2.9.0 lib/net/ssh/transport/hmac.rb