#[non_exhaustive]pub enum Item {
X509Certificate(CertificateDer<'static>),
SubjectPublicKeyInfo(SubjectPublicKeyInfoDer<'static>),
Pkcs1Key(PrivatePkcs1KeyDer<'static>),
Pkcs8Key(PrivatePkcs8KeyDer<'static>),
Sec1Key(PrivateSec1KeyDer<'static>),
Crl(CertificateRevocationListDer<'static>),
Csr(CertificateSigningRequestDer<'static>),
}
Expand description
The contents of a single recognised block in a PEM file.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
X509Certificate(CertificateDer<'static>)
A DER-encoded x509 certificate.
Appears as “CERTIFICATE” in PEM files.
SubjectPublicKeyInfo(SubjectPublicKeyInfoDer<'static>)
A DER-encoded Subject Public Key Info; as specified in RFC 7468.
Appears as “PUBLIC KEY” in PEM files.
Pkcs1Key(PrivatePkcs1KeyDer<'static>)
A DER-encoded plaintext RSA private key; as specified in PKCS #1/RFC 3447
Appears as “RSA PRIVATE KEY” in PEM files.
Pkcs8Key(PrivatePkcs8KeyDer<'static>)
A DER-encoded plaintext private key; as specified in PKCS #8/RFC 5958
Appears as “PRIVATE KEY” in PEM files.
Sec1Key(PrivateSec1KeyDer<'static>)
A Sec1-encoded plaintext private key; as specified in RFC 5915
Appears as “EC PRIVATE KEY” in PEM files.
Crl(CertificateRevocationListDer<'static>)
A Certificate Revocation List; as specified in RFC 5280
Appears as “X509 CRL” in PEM files.
Csr(CertificateSigningRequestDer<'static>)
A Certificate Signing Request; as specified in RFC 2986
Appears as “CERTIFICATE REQUEST” in PEM files.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Item
impl RefUnwindSafe for Item
impl Send for Item
impl Sync for Item
impl Unpin for Item
impl UnwindSafe for Item
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 32 bytes
Size for each variant:
X509Certificate
: 24 bytesSubjectPublicKeyInfo
: 24 bytesPkcs1Key
: 24 bytesPkcs8Key
: 24 bytesSec1Key
: 24 bytesCrl
: 24 bytesCsr
: 24 bytes