Trait pkcs8::ToPublicKey
source · [−]pub trait ToPublicKey {
fn to_public_key_der(&self) -> Result<PublicKeyDocument>;
fn to_public_key_pem(&self) -> Result<String> { ... }
fn to_public_key_pem_with_le(
&self,
line_ending: LineEnding
) -> Result<String> { ... }
fn write_public_key_der_file(&self, path: impl AsRef<Path>) -> Result<()> { ... }
fn write_public_key_pem_file(&self, path: impl AsRef<Path>) -> Result<()> { ... }
}
Expand description
Serialize a public key object to a SPKI-encoded document.
Required Methods
fn to_public_key_der(&self) -> Result<PublicKeyDocument>
fn to_public_key_der(&self) -> Result<PublicKeyDocument>
Serialize a PublicKeyDocument
containing a SPKI-encoded public key.
Provided Methods
fn to_public_key_pem(&self) -> Result<String>
fn to_public_key_pem(&self) -> Result<String>
Serialize this public key as PEM-encoded SPKI.
fn to_public_key_pem_with_le(&self, line_ending: LineEnding) -> Result<String>
fn to_public_key_pem_with_le(&self, line_ending: LineEnding) -> Result<String>
Serialize this public key as PEM-encoded SPKI with the given LineEnding
.
Write ASN.1 DER-encoded public key to the given path