module Net::SSH::Transport::HMAC

def self.key_length(name)

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