Struct pkcs8::EncryptedPrivateKeyInfo[][src]

pub struct EncryptedPrivateKeyInfo<'a> {
    pub encryption_algorithm: EncryptionScheme<'a>,
    pub encrypted_data: &'a [u8],
}
This is supported on crate feature pkcs5 only.

PKCS#8 EncryptedPrivateKeyInfo.

ASN.1 structure containing a PKCS#5 EncryptionScheme identifier for a password-based symmetric encryption scheme and encrypted private key data.

Schema

Structure described in RFC 5208 Section 6:

EncryptedPrivateKeyInfo ::= SEQUENCE {
  encryptionAlgorithm  EncryptionAlgorithmIdentifier,
  encryptedData        EncryptedData }

EncryptionAlgorithmIdentifier ::= AlgorithmIdentifier

EncryptedData ::= OCTET STRING

Fields

encryption_algorithm: EncryptionScheme<'a>

Algorithm identifier describing a password-based symmetric encryption scheme used to encrypt the encrypted_data field.

encrypted_data: &'a [u8]

Private key data

Implementations

impl<'a> EncryptedPrivateKeyInfo<'a>[src]

pub fn decrypt(&self, password: impl AsRef<[u8]>) -> Result<PrivateKeyDocument>[src]

This is supported on crate feature encryption only.

Attempt to decrypt this encrypted private key using the provided password to derive an encryption key.

pub fn to_der(&self) -> EncryptedPrivateKeyDocument[src]

This is supported on crate feature alloc only.

Encode this EncryptedPrivateKeyInfo as ASN.1 DER.

pub fn to_pem(&self) -> Zeroizing<String>[src]

This is supported on crate feature pem only.

Encode this EncryptedPrivateKeyInfo as PEM-encoded ASN.1 DER.

Trait Implementations

impl<'a> Clone for EncryptedPrivateKeyInfo<'a>[src]

impl<'a> Debug for EncryptedPrivateKeyInfo<'a>[src]

impl<'a> Eq for EncryptedPrivateKeyInfo<'a>[src]

impl From<&'_ EncryptedPrivateKeyInfo<'_>> for EncryptedPrivateKeyDocument[src]

impl From<EncryptedPrivateKeyInfo<'_>> for EncryptedPrivateKeyDocument[src]

impl<'a> Message<'a> for EncryptedPrivateKeyInfo<'a>[src]

impl<'a> PartialEq<EncryptedPrivateKeyInfo<'a>> for EncryptedPrivateKeyInfo<'a>[src]

impl<'a> StructuralEq for EncryptedPrivateKeyInfo<'a>[src]

impl<'a> StructuralPartialEq for EncryptedPrivateKeyInfo<'a>[src]

impl<'a> TryFrom<&'a [u8]> for EncryptedPrivateKeyInfo<'a>[src]

type Error = Error

The type returned in the event of a conversion error.

impl<'a> TryFrom<Any<'a>> for EncryptedPrivateKeyInfo<'a>[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, T> Choice<'a> for T where
    T: Decodable<'a> + Encodable + Tagged
[src]

impl<'a, T> Decodable<'a> for T where
    T: TryFrom<Any<'a>, Error = Error>, 
[src]

impl<'a, M> Encodable for M where
    M: Message<'a>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<'a, M> Tagged for M where
    M: Message<'a>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.