CryptoKey
A cryptographic key (RSA).
The CryptoKey class represents a cryptographic key. Keys can be loaded and saved like any other .
They can be used to generate a self-signed X509Certificate via and as private key in StreamPeerSSL.accept_stream along with the appropriate certificate.
- is_public_only ( ) const
Loads a key from path
. If public_only
is true
, only the public key will be loaded.
Note: path
should be a “*.pub” file if public_only
is , a “*.key” file otherwise.
Loads a key from the given string
. If public_only
is true
, only the public key will be loaded.
- save ( String path, public_only=false )
Saves a key to the given path
. If public_only
is , only the public key will be saved.
Note: path
should be a “*.pub” file if public_only
is true
, a “*.key” file otherwise.
- String save_to_string ( public_only=false )
Returns a string containing the key in PEM format. If public_only
is true
, only the public key will be included.