Method: OpenSSL::PKey::DSA#public_key

Defined in:
lib/openssl/pkey.rb

#public_keyObject

:call-seq:

dsa.public_key -> dsanew

Returns a new DSA instance that carries just the DSA parameters and the public key.

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.



153
154
155
# File 'lib/openssl/pkey.rb', line 153

def public_key
  OpenSSL::PKey.read(public_to_der)
end