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

    fn to_pkcs8_encrypted_der(
        &self,
        rng: impl CryptoRng + RngCore,
        password: impl AsRef<[u8]>
    ) -> Result<SecretDocument> { ... } fn to_pkcs8_pem(&self, line_ending: LineEnding) -> Result<Zeroizing<String>> { ... } fn to_pkcs8_encrypted_pem(
        &self,
        rng: impl CryptoRng + RngCore,
        password: impl AsRef<[u8]>,
        line_ending: LineEnding
    ) -> Result<Zeroizing<String>> { ... } fn write_pkcs8_der_file(&self, path: impl AsRef<Path>) -> Result<()> { ... } fn write_pkcs8_pem_file(
        &self,
        path: impl AsRef<Path>,
        line_ending: LineEnding
    ) -> Result<()> { ... } }
Available on crate feature alloc 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

Available on crate feature encryption only.

Create an SecretDocument containing the ciphertext of a PKCS#8 encoded private key encrypted under the given password.

Available on crate feature pem only.

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

Available on crate features encryption and pem only.

Serialize this private key as an encrypted PEM-encoded PKCS#8 private key using the provided to derive an encryption key.

Available on crate feature std only.

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

Available on crate features pem and std only.

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

Implementors