Struct rocket::mtls::x509::TbsCertList
[−]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>, Global>,
/* private fields */
}
mtls
only.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>, Global>
Implementations
impl<'a> TbsCertList<'a>
impl<'a> TbsCertList<'a>
pub fn extensions(&self) -> &[X509Extension<'_>]
pub fn extensions(&self) -> &[X509Extension<'_>]
Returns the certificate extensions
pub fn iter_extensions(&self) -> impl Iterator<Item = &X509Extension<'_>>
pub fn iter_extensions(&self) -> impl Iterator<Item = &X509Extension<'_>>
Returns an iterator over the certificate extensions
pub 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.
pub fn extensions_map(
&self
) -> Result<HashMap<Oid<'_>, &X509Extension<'_>, RandomState>, X509Error>
pub fn extensions_map(
&self
) -> Result<HashMap<Oid<'_>, &X509Extension<'_>, RandomState>, X509Error>
Builds and returns a map of extensions.
If an extension is present twice, this will fail and return DuplicateExtensions
.
Trait Implementations
impl<'a> AsRef<[u8]> for TbsCertList<'a>
impl<'a> AsRef<[u8]> for TbsCertList<'a>
impl<'a> Clone for TbsCertList<'a>
impl<'a> Clone for TbsCertList<'a>
fn 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
impl<'a> Debug for TbsCertList<'a>
impl<'a> Debug for TbsCertList<'a>
impl<'a> FromDer<'a> for TbsCertList<'a>
impl<'a> FromDer<'a> for TbsCertList<'a>
impl<'a> PartialEq<TbsCertList<'a>> for TbsCertList<'a>
impl<'a> PartialEq<TbsCertList<'a>> for TbsCertList<'a>
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 ==
. Read more
fn 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
impl<'a, T> AsTaggedExplicit<'a> for T where
T: 'a,
impl<'a, T> AsTaggedExplicit<'a> for T where
T: 'a,
fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self>
impl<'a, T> AsTaggedImplicit<'a> for T where
T: 'a,
impl<'a, T> AsTaggedImplicit<'a> 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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<T> IntoCollection<T> for T
impl<T> IntoCollection<T> for T
fn into_collection<A>(self) -> SmallVec<A> where
A: Array<Item = T>,
fn into_collection<A>(self) -> SmallVec<A> where
A: Array<Item = T>,
Converts self
into a collection.
fn mapped<U, F, A>(self, f: F) -> SmallVec<A> where
F: FnMut(T) -> U,
A: Array<Item = U>,
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more