# File lib/net/ssh/buffer.rb, line 228
    def read_bignum
      data = read_string
      return unless data
      OpenSSL::BN.new(data, 2)
    end