Method: SSHData::PublicKey::RSA#rfc4253
- Defined in:
- lib/ssh_data/public_key/rsa.rb
#rfc4253 ⇒ Object
RFC4253 binary encoding of the public key.
Returns a binary String.
46 47 48 49 50 51 52 |
# File 'lib/ssh_data/public_key/rsa.rb', line 46 def rfc4253 Encoding.encode_fields( [:string, algo], [:mpint, e], [:mpint, n] ) end |