class Net::SSH::Buffer

def write_key(*key)

alter the read position. Returns the buffer object.
Writes the given arguments to the buffer as SSH2-encoded keys. Does not
def write_key(*key)
  key.each { |k| append(k.to_blob) }
  self
end