public_key

dsa.public_key â aDSA
Instance Public methods

Returns a new DSA instance that carries just the public key information. If the current instance has also private key information, this will no longer be present in the new instance. This feature is helpful for publishing the public key information without leaking any of the private information.

Example

dsa = OpenSSL::PKey::DSA.new(2048) # has public and private information
pub_key = dsa.public_key # has only the public part available
pub_key_der = pub_key.to_der # it's safe to publish this
doc_ruby_on_rails
2015-04-25 16:11:10
Comments
Leave a Comment

Please login to continue.