# File lib/net/ssh/util/openssl.rb, line 30
    def to_ssh
      if zero?
        return [ 0 ].pack( "N" )
      else
        buf = to_s( 2 )
        if buf[0][7] == 1
          return [ buf.length+1, 0, buf ].pack( "NCA*" )
        else
          return [ buf.length, buf ].pack( "NA*" )
        end
      end
    end