Sha256: 2e70b04a1023400ba7d13c1bd09957ea60dea1be0fb4e0d72d131157a5507989
Contents?: true
Size: 245 Bytes
Versions: 28
Compression:
Stored size: 245 Bytes
Contents
require 'net/ssh/transport/hmac/abstract' module Net::SSH::Transport::HMAC # The "none" algorithm. This has a key and mac length of 0. class None < Abstract key_length 0 mac_length 0 def digest(data) "" end end end
Version data entries
28 entries across 28 versions & 6 rubygems