class Net::SSH::Transport::HMAC::Abstract

def key=(value)

length.
Sets the key to the given value, truncating it so that it is the correct
def key=(value)
  @key = value ? value.to_s[0,key_length] : nil
end