Trait pkcs1::DecodeRsaPublicKey
source · pub trait DecodeRsaPublicKey: Sized {
// Required method
fn from_pkcs1_der(bytes: &[u8]) -> Result<Self>;
// Provided method
fn from_pkcs1_pem(s: &str) -> Result<Self> { ... }
}
Expand description
Parse a RsaPublicKey
from a PKCS#1-encoded document.
Required Methods§
sourcefn from_pkcs1_der(bytes: &[u8]) -> Result<Self>
fn from_pkcs1_der(bytes: &[u8]) -> Result<Self>
Deserialize object from ASN.1 DER-encoded RsaPublicKey
(binary format).
Provided Methods§
sourcefn from_pkcs1_pem(s: &str) -> Result<Self>
fn from_pkcs1_pem(s: &str) -> Result<Self>
Deserialize PEM-encoded RsaPublicKey
.
Keys in this format begin with the following:
-----BEGIN RSA PUBLIC KEY-----
Object Safety§
This trait is not object safe.