Sha256: 29bc75283f33c104afd7d484c2b2d79ddd753102d649e42164d95cc059385f87
Contents?: true
Size: 390 Bytes
Versions: 160
Compression:
Stored size: 390 Bytes
Contents
require 'net/ssh/transport/hmac/abstract' module Net::SSH::Transport::HMAC if defined?(OpenSSL::Digest::SHA512) # need openssl support # The SHA-512 HMAC algorithm. This has a mac and key length of 64, and # uses the SHA-512 digest algorithm. class SHA2_512 < Abstract mac_length 64 key_length 64 digest_class OpenSSL::Digest::SHA512 end end end
Version data entries
160 entries across 140 versions & 17 rubygems