[][src]Trait pkcs8::ToPrivateKey

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

    pub fn to_pkcs8_pem(&self) -> Zeroizing<String> { ... }
pub fn write_pkcs8_der_file(&self, path: impl AsRef<Path>) -> Result<()> { ... }
pub 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

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

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

Loading content...

Provided methods

pub 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.

pub 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

pub 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...