2012-06-29 05:18:28 +00:00
|
|
|
# -*- coding: binary -*-
|
2010-02-16 19:18:19 +00:00
|
|
|
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
|