Struct openssl::pkey::PKeyRef [−][src]
pub struct PKeyRef<T>(_, _);
Expand description
Reference to PKey
.
Implementations
Returns a copy of the internal RSA key.
This corresponds to EVP_PKEY_get1_RSA
.
Returns a copy of the internal DSA key.
This corresponds to EVP_PKEY_get1_DSA
.
Returns a copy of the internal DH key.
This corresponds to EVP_PKEY_get1_DH
.
Returns a copy of the internal elliptic curve key.
This corresponds to EVP_PKEY_get1_EC_KEY
.
Returns the Id
that represents the type of this key.
This corresponds to EVP_PKEY_id
.
Returns the maximum size of a signature in bytes.
This corresponds to EVP_PKEY_size
.
Serializes the public key into a PEM-encoded SubjectPublicKeyInfo structure.
The output will have a header of -----BEGIN PUBLIC KEY-----
.
This corresponds to PEM_write_bio_PUBKEY
.
Serializes the public key into a DER-encoded SubjectPublicKeyInfo structure.
This corresponds to i2d_PUBKEY
.
Returns the size of the key.
This corresponds to the bit length of the modulus of an RSA key, and the bit length of the group order for an elliptic curve key, for example.
Compares the public component of this key with another.
Raw byte representation of a public key
This function only works for algorithms that support raw public keys. Currently this is: X25519, ED25519, X448 or ED448
This corresponds to EVP_PKEY_get_raw_public_key
.
Serializes the private key to a PEM-encoded PKCS#8 PrivateKeyInfo structure.
The output will have a header of -----BEGIN PRIVATE KEY-----
.
This corresponds to PEM_write_bio_PKCS8PrivateKey
.
pub fn private_key_to_pem_pkcs8_passphrase(
&self,
cipher: Cipher,
passphrase: &[u8]
) -> Result<Vec<u8>, ErrorStack>
pub fn private_key_to_pem_pkcs8_passphrase(
&self,
cipher: Cipher,
passphrase: &[u8]
) -> Result<Vec<u8>, ErrorStack>
Serializes the private key to a PEM-encoded PKCS#8 EncryptedPrivateKeyInfo structure.
The output will have a header of -----BEGIN ENCRYPTED PRIVATE KEY-----
.
This corresponds to PEM_write_bio_PKCS8PrivateKey
.
Serializes the private key to a DER-encoded key type specific format.
This corresponds to i2d_PrivateKey
.
Raw byte representation of a private key
This function only works for algorithms that support raw private keys. Currently this is: HMAC, X25519, ED25519, X448 or ED448
This corresponds to EVP_PKEY_get_raw_private_key
.
Trait Implementations
Constructs a shared instance of this type from its raw type.
Constructs a mutable reference of this type from its raw type.