class Net::SSH::Buffer

def write_bignum(*n)

Does not alter the read position. Returns the buffer object.
checking is done to ensure that the arguments are, in fact, bignums.
Writes each argument to the buffer as a bignum (SSH2-style). No
def write_bignum(*n)
  @content << n.map { |b| b.to_ssh }.join
  self
end