logo
pub trait EncodePrivateKey {
    fn to_pkcs8_der(&self) -> Result<SecretDocument, Error>;

    fn to_pkcs8_pem(
        &self,
        line_ending: LineEnding
    ) -> Result<Zeroizing<String>, Error> { ... } }
Available on crate feature pkcs8 only.
Expand description

Serialize a private key object to a PKCS#8 encoded document.

Required Methods

Serialize a [SecretDocument] containing a PKCS#8-encoded private key.

Provided Methods

Serialize this private key as PEM-encoded PKCS#8 with the given LineEnding.

Implementors