Method: OpenSSL::PKey::RSA#public_key
- Defined in:
- lib/openssl/pkey.rb
#public_key ⇒ Object
:call-seq:
rsa.public_key -> rsanew
Returns a new RSA instance that carries just the public key components.
This method is provided for backwards compatibility. In most cases, there is no need to call this method.
For the purpose of serializing the public key, to PEM or DER encoding of X.509 SubjectPublicKeyInfo format, check PKey#public_to_pem and PKey#public_to_der.
327 328 329 |
# File 'lib/openssl/pkey.rb', line 327 def public_key OpenSSL::PKey.read(public_to_der) end |