Trait pkcs8::ToPrivateKey[][src]

pub trait ToPrivateKey {
    fn to_pkcs8_der(&self) -> PrivateKeyDocument;

    fn to_pkcs8_encrypted_der(
        &self,
        rng: impl CryptoRng + RngCore,
        password: impl AsRef<[u8]>
    ) -> Result<EncryptedPrivateKeyDocument> { ... }
fn to_pkcs8_pem(&self) -> Zeroizing<String> { ... }
fn to_pkcs8_encrypted_pem(
        &self,
        rng: impl CryptoRng + RngCore,
        password: impl AsRef<[u8]>
    ) -> Result<Zeroizing<String>> { ... }
fn write_pkcs8_der_file(&self, path: impl AsRef<Path>) -> Result<()> { ... }
fn write_pkcs8_pem_file(&self, path: impl AsRef<Path>) -> Result<()> { ... } }
This is supported on crate feature alloc only.

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

Required methods

fn to_pkcs8_der(&self) -> PrivateKeyDocument[src]

Serialize a PrivateKeyDocument containing a PKCS#8-encoded private key.

Loading content...

Provided methods

fn to_pkcs8_encrypted_der(
    &self,
    rng: impl CryptoRng + RngCore,
    password: impl AsRef<[u8]>
) -> Result<EncryptedPrivateKeyDocument>
[src]

This is supported on crate feature encryption only.

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

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

This is supported on crate feature pem only.

Serialize this private key as PEM-encoded PKCS#8.

fn to_pkcs8_encrypted_pem(
    &self,
    rng: impl CryptoRng + RngCore,
    password: impl AsRef<[u8]>
) -> Result<Zeroizing<String>>
[src]

This is supported 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.

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

This is supported on crate feature std only.

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

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

This is supported on crate features pem and std only.

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

Loading content...

Implementors

Loading content...