Struct x509_parser::revocation_list::TbsCertList
source · pub struct TbsCertList<'a> {
pub version: Option<X509Version>,
pub signature: AlgorithmIdentifier<'a>,
pub issuer: X509Name<'a>,
pub this_update: ASN1Time,
pub next_update: Option<ASN1Time>,
pub revoked_certificates: Vec<RevokedCertificate<'a>>,
/* private fields */
}
Expand description
The sequence TBSCertList contains information about the certificates that have been revoked by the CA that issued the CRL.
RFC5280 definition:
TBSCertList ::= SEQUENCE { version Version OPTIONAL, -- if present, MUST be v2 signature AlgorithmIdentifier, issuer Name, thisUpdate Time, nextUpdate Time OPTIONAL, revokedCertificates SEQUENCE OF SEQUENCE { userCertificate CertificateSerialNumber, revocationDate Time, crlEntryExtensions Extensions OPTIONAL -- if present, version MUST be v2 } OPTIONAL, crlExtensions [0] EXPLICIT Extensions OPTIONAL -- if present, version MUST be v2 }
Fields§
§version: Option<X509Version>
§signature: AlgorithmIdentifier<'a>
§issuer: X509Name<'a>
§this_update: ASN1Time
§next_update: Option<ASN1Time>
§revoked_certificates: Vec<RevokedCertificate<'a>>
Implementations§
source§impl<'a> TbsCertList<'a>
impl<'a> TbsCertList<'a>
sourcepub fn extensions(&self) -> &[X509Extension<'_>]
pub fn extensions(&self) -> &[X509Extension<'_>]
Returns the certificate extensions
sourcepub fn iter_extensions(&self) -> impl Iterator<Item = &X509Extension<'_>>
pub fn iter_extensions(&self) -> impl Iterator<Item = &X509Extension<'_>>
Returns an iterator over the certificate extensions
sourcepub fn find_extension(&self, oid: &Oid<'_>) -> Option<&X509Extension<'_>>
pub fn find_extension(&self, oid: &Oid<'_>) -> Option<&X509Extension<'_>>
Searches for an extension with the given Oid
.
Note: if there are several extensions with the same Oid
, the first one is returned.
sourcepub fn extensions_map(
&self
) -> Result<HashMap<Oid<'_>, &X509Extension<'_>>, X509Error>
pub fn extensions_map( &self ) -> Result<HashMap<Oid<'_>, &X509Extension<'_>>, X509Error>
Builds and returns a map of extensions.
If an extension is present twice, this will fail and return DuplicateExtensions
.
Trait Implementations§
source§impl<'a> AsRef<[u8]> for TbsCertList<'a>
impl<'a> AsRef<[u8]> for TbsCertList<'a>
source§impl<'a> Clone for TbsCertList<'a>
impl<'a> Clone for TbsCertList<'a>
source§fn clone(&self) -> TbsCertList<'a>
fn clone(&self) -> TbsCertList<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a> Debug for TbsCertList<'a>
impl<'a> Debug for TbsCertList<'a>
source§impl<'a> FromDer<'a, X509Error> for TbsCertList<'a>
impl<'a> FromDer<'a, X509Error> for TbsCertList<'a>
source§fn from_der(i: &'a [u8]) -> X509Result<'_, Self>
fn from_der(i: &'a [u8]) -> X509Result<'_, Self>
Attempt to parse input bytes into a DER object (enforcing constraints)
source§impl<'a> PartialEq for TbsCertList<'a>
impl<'a> PartialEq for TbsCertList<'a>
source§fn eq(&self, other: &TbsCertList<'a>) -> bool
fn eq(&self, other: &TbsCertList<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<'a> StructuralPartialEq for TbsCertList<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for TbsCertList<'a>
impl<'a> Send for TbsCertList<'a>
impl<'a> Sync for TbsCertList<'a>
impl<'a> Unpin for TbsCertList<'a>
impl<'a> UnwindSafe for TbsCertList<'a>
Blanket Implementations§
source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Mutably borrows from an owned value. Read more