class Net::SSH::Transport::IdentityCipher
determined (i.e., during key exchange).
keeps things in the code nice and clean when a cipher has not yet been
A cipher that does nothing but pass the data through, unchanged. This
def block_size
def block_size 8 end
def decrypt
def decrypt self end
def encrypt
def encrypt self end
def final
def final "" end
def iv=(v)
def iv=(v) nil end
def iv_len
def iv_len 4 end
def name
def name "identity" end
def reset
def reset self end
def update(text)
def update(text) text end