File Manager

Path: /opt/chef/embedded/lib/ruby/gems/2.7.0/gems/net-ssh-6.1.0/lib/net/ssh/transport/hmac/

Viewing File: md5.rb

require 'net/ssh/transport/hmac/abstract'

module Net::SSH::Transport::HMAC

  # The MD5 HMAC algorithm.
  class MD5 < Abstract
    mac_length   16
    key_length   16
    digest_class OpenSSL::Digest::MD5
  end

end