class Net::SSH::Buffer

def read_bignum

binary format.
essentially just a string, which is reinterpreted to be a bignum in
Read a bignum (OpenSSL::BN) from the buffer, in SSH2 format. It is
def read_bignum
  data = read_string
  return unless data
  OpenSSL::BN.new(data, 2)
end