pub trait DecodePrivateKey: Sized {
    // Required method
    fn from_pkcs8_der(bytes: &[u8]) -> Result<Self>;

    // Provided methods
    fn from_pkcs8_encrypted_der(
        bytes: &[u8],
        password: impl AsRef<[u8]>
    ) -> Result<Self> { ... }
    fn from_pkcs8_pem(s: &str) -> Result<Self> { ... }
    fn from_pkcs8_encrypted_pem(
        s: &str,
        password: impl AsRef<[u8]>
    ) -> Result<Self> { ... }
    fn read_pkcs8_der_file(path: impl AsRef<Path>) -> Result<Self> { ... }
    fn read_pkcs8_pem_file(path: impl AsRef<Path>) -> Result<Self> { ... }
}
Expand description

Parse a private key object from a PKCS#8 encoded document.

Required Methods§

source

fn from_pkcs8_der(bytes: &[u8]) -> Result<Self>

Deserialize PKCS#8 private key from ASN.1 DER-encoded data (binary format).

Provided Methods§

source

fn from_pkcs8_encrypted_der( bytes: &[u8], password: impl AsRef<[u8]> ) -> Result<Self>

Available on crate feature encryption only.

Deserialize encrypted PKCS#8 private key from ASN.1 DER-encoded data (binary format) and attempt to decrypt it using the provided password.

source

fn from_pkcs8_pem(s: &str) -> Result<Self>

Available on crate feature pem only.

Deserialize PKCS#8-encoded private key from PEM.

Keys in this format begin with the following delimiter:

-----BEGIN PRIVATE KEY-----
source

fn from_pkcs8_encrypted_pem(s: &str, password: impl AsRef<[u8]>) -> Result<Self>

Available on crate features encryption and pem only.

Deserialize encrypted PKCS#8-encoded private key from PEM and attempt to decrypt it using the provided password.

Keys in this format begin with the following delimiter:

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

fn read_pkcs8_der_file(path: impl AsRef<Path>) -> Result<Self>

Available on crate feature std only.

Load PKCS#8 private key from an ASN.1 DER-encoded file on the local filesystem (binary format).

source

fn read_pkcs8_pem_file(path: impl AsRef<Path>) -> Result<Self>

Available on crate features pem and std only.

Load PKCS#8 private key from a PEM-encoded file on the local filesystem.

Implementors§

source§

impl<T> DecodePrivateKey for Twhere T: for<'a> TryFrom<PrivateKeyInfo<'a>, Error = Error>,