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