[−][src]Struct openssl::pkey::PKeyRef
Reference to PKey
.
Methods
impl<T> PKeyRef<T>
[src][−]
pub fn rsa(&self) -> Result<Rsa<T>, ErrorStack>
[src][−]
Returns a copy of the internal RSA key.
This corresponds to EVP_PKEY_get1_RSA
.
pub fn dsa(&self) -> Result<Dsa<T>, ErrorStack>
[src][−]
Returns a copy of the internal DSA key.
This corresponds to EVP_PKEY_get1_DSA
.
pub fn dh(&self) -> Result<Dh<T>, ErrorStack>
[src][−]
Returns a copy of the internal DH key.
This corresponds to EVP_PKEY_get1_DH
.
pub fn ec_key(&self) -> Result<EcKey<T>, ErrorStack>
[src][−]
Returns a copy of the internal elliptic curve key.
This corresponds to EVP_PKEY_get1_EC_KEY
.
pub fn id(&self) -> Id
[src][−]
Returns the Id
that represents the type of this key.
This corresponds to EVP_PKEY_id
.
impl<T> PKeyRef<T> where
T: HasPublic,
[src][−]
T: HasPublic,
pub fn public_key_to_pem(&self) -> Result<Vec<u8>, ErrorStack>
[src][−]
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
.
pub fn public_key_to_der(&self) -> Result<Vec<u8>, ErrorStack>
[src][−]
Serializes the public key into a DER-encoded SubjectPublicKeyInfo structure.
This corresponds to i2d_PUBKEY
.
pub fn bits(&self) -> u32
[src][−]
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.
pub fn public_eq<U>(&self, other: &PKeyRef<U>) -> bool where
U: HasPublic,
[src][−]
U: HasPublic,
Compares the public component of this key with another.
impl<T> PKeyRef<T> where
T: HasPrivate,
[src][−]
T: HasPrivate,
pub fn private_key_to_pem_pkcs8(&self) -> Result<Vec<u8>, ErrorStack>
[src][−]
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>
[src][−]
&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
.
pub fn private_key_to_der(&self) -> Result<Vec<u8>, ErrorStack>
[src][−]
Serializes the private key to a DER-encoded key type specific format.
This corresponds to i2d_PrivateKey
.
Trait Implementations
impl<T> Sync for PKeyRef<T>
[src]
impl<T> AsRef<PKeyRef<T>> for PKey<T>
[src][+]
impl<T> Send for PKeyRef<T>
[src]
impl<T> Borrow<PKeyRef<T>> for PKey<T>
[src][+]
impl<T> ForeignTypeRef for PKeyRef<T>
[src][+]
Blanket Implementations
impl<T> From for T
[src][−]
impl<T, U> Into for T where
U: From<T>,
[src][−]
U: From<T>,
impl<T, U> TryFrom for T where
T: From<U>,
[src][−]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src][−]
impl<T> Borrow for T where
T: ?Sized,
[src][−]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src][−]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src][−]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src][−]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src][−]
impl<T> Any for T where
T: 'static + ?Sized,
[src][−]
T: 'static + ?Sized,