[][src]Trait pkcs8::ToPublicKey

pub trait ToPublicKey {
    pub fn to_public_key_der(&self) -> PublicKeyDocument;

    pub fn to_public_key_pem(&self) -> String { ... }
pub fn write_public_key_der_file(
        &self,
        path: impl AsRef<Path>
    ) -> Result<()> { ... }
pub fn write_public_key_pem_file(
        &self,
        path: impl AsRef<Path>
    ) -> Result<()> { ... } }
This is supported on crate feature alloc only.

Serialize a public key object to a SPKI-encoded document.

Required methods

pub fn to_public_key_der(&self) -> PublicKeyDocument[src]

Serialize a PublicKeyDocument containing a SPKI-encoded public key.

Loading content...

Provided methods

pub fn to_public_key_pem(&self) -> String[src]

This is supported on crate feature pem only.

Serialize this public key as PEM-encoded SPKI.

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

This is supported on crate feature std only.

Write ASN.1 DER-encoded public key to the given path

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

This is supported on crate features pem and std only.

Write ASN.1 DER-encoded public key to the given path

Loading content...

Implementors

Loading content...