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
sourceimpl<'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
sourceimpl<'a> AsRef<[u8]> for TbsCertList<'a>
impl<'a> AsRef<[u8]> for TbsCertList<'a>
sourceimpl<'a> Clone for TbsCertList<'a>
impl<'a> Clone for TbsCertList<'a>
sourcefn clone(&self) -> TbsCertList<'a>
fn clone(&self) -> TbsCertList<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'a> Debug for TbsCertList<'a>
impl<'a> Debug for TbsCertList<'a>
sourceimpl<'a> FromDer<'a, X509Error> for TbsCertList<'a>
impl<'a> FromDer<'a, X509Error> for TbsCertList<'a>
sourcefn 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)
sourceimpl<'a> PartialEq<TbsCertList<'a>> for TbsCertList<'a>
impl<'a> PartialEq<TbsCertList<'a>> for TbsCertList<'a>
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &TbsCertList<'a>) -> bool
fn ne(&self, other: &TbsCertList<'a>) -> bool
This method tests for !=
.
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
sourceimpl<'a, T, E> AsTaggedExplicit<'a, E> for T where
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for T where
T: 'a,
sourceimpl<'a, T, E> AsTaggedImplicit<'a, E> for T where
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for T where
T: 'a,
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more