Sha256: 95c481412f8177caa0a6753b1368f4593cffeb7fe7a1d912de45a144bee539c0
Contents?: true
Size: 307 Bytes
Versions: 45
Compression:
Stored size: 307 Bytes
Contents
require 'net/ssh/transport/hmac/abstract' module Net::SSH::Transport::HMAC # The SHA-256 HMAC algorithm. This has a mac and key length of 32, and # uses the SHA-256 digest algorithm. class SHA2_256 < Abstract mac_length 32 key_length 32 digest_class OpenSSL::Digest::SHA256 end end
Version data entries
45 entries across 44 versions & 7 rubygems