Struct pkcs8::EncryptedPrivateKeyDocument[][src]

pub struct EncryptedPrivateKeyDocument(_);
This is supported on crate features alloc and pkcs5 only.

Encrypted PKCS#8 private key document.

This type provides heap-backed storage for EncryptedPrivateKeyInfo encoded as ASN.1 DER with the invariant that the contained-document is "well-formed", i.e. it will parse successfully according to this crate's parsing rules.

Implementations

impl EncryptedPrivateKeyDocument[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 encrypted_private_key_info(&self) -> EncryptedPrivateKeyInfo<'_>[src]

pub fn from_der(bytes: &[u8]) -> Result<Self>[src]

Parse EncryptedPrivateKeyDocument from ASN.1 DER-encoded PKCS#8.

pub fn from_pem(s: &str) -> Result<Self>[src]

This is supported on crate feature pem only.

Parse EncryptedPrivateKeyDocument from PEM-encoded PKCS#8.

PEM-encoded encrypted private keys can be identified by the leading delimiter:

-----BEGIN ENCRYPTED PRIVATE KEY-----

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

This is supported on crate feature pem only.

Serialize EncryptedPrivateKeyDocument as self-zeroizing PEM-encoded PKCS#8 string.

pub fn read_der_file(path: impl AsRef<Path>) -> Result<Self>[src]

This is supported on crate feature std only.

Load EncryptedPrivateKeyDocument from an ASN.1 DER-encoded file on the local filesystem (binary format).

pub fn read_pem_file(path: impl AsRef<Path>) -> Result<Self>[src]

This is supported on crate features pem and std only.

Load EncryptedPrivateKeyDocument from a PEM-encoded file on the local filesystem.

pub fn write_der_file(&self, path: impl AsRef<Path>) -> Result<()>[src]

This is supported on crate feature std only.

Write ASN.1 DER-encoded PKCS#8 encrypted private key to the given path.

pub fn write_pem_file(&self, path: impl AsRef<Path>) -> Result<()>[src]

This is supported on crate features pem and std only.

Write PEM-encoded PKCS#8 encrypted private key to the given path.

Trait Implementations

impl AsRef<[u8]> for EncryptedPrivateKeyDocument[src]

impl Clone for EncryptedPrivateKeyDocument[src]

impl Debug for EncryptedPrivateKeyDocument[src]

impl Eq for EncryptedPrivateKeyDocument[src]

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

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

impl FromStr for EncryptedPrivateKeyDocument[src]

This is supported on crate feature pem only.

type Err = Error

The associated error which can be returned from parsing.

impl PartialEq<EncryptedPrivateKeyDocument> for EncryptedPrivateKeyDocument[src]

impl StructuralEq for EncryptedPrivateKeyDocument[src]

impl StructuralPartialEq for EncryptedPrivateKeyDocument[src]

impl TryFrom<&'_ [u8]> for EncryptedPrivateKeyDocument[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Vec<u8, Global>> for EncryptedPrivateKeyDocument[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<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<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.