Struct webpki::OwnedCertRevocationList
source · pub struct OwnedCertRevocationList { /* private fields */ }
Expand description
Owned representation of a RFC 52801 profile Certificate Revocation List (CRL).
This type is only available when using the alloc
feature.
Trait Implementations§
source§impl CertRevocationList for OwnedCertRevocationList
impl CertRevocationList for OwnedCertRevocationList
source§fn find_serial(
&self,
serial: &[u8]
) -> Result<Option<BorrowedRevokedCert<'_>>, Error>
fn find_serial( &self, serial: &[u8] ) -> Result<Option<BorrowedRevokedCert<'_>>, Error>
Try to find a revoked certificate in the CRL by DER encoded serial number. This
may yield an error if the CRL has malformed revoked certificates.
source§fn verify_signature(
&self,
supported_sig_algs: &[&SignatureAlgorithm],
issuer_spki: &[u8]
) -> Result<(), Error>
fn verify_signature( &self, supported_sig_algs: &[&SignatureAlgorithm], issuer_spki: &[u8] ) -> Result<(), Error>
Verify the CRL signature using the issuer’s subject public key information (SPKI)
and a list of supported signature algorithms.
Auto Trait Implementations§
impl RefUnwindSafe for OwnedCertRevocationList
impl Send for OwnedCertRevocationList
impl Sync for OwnedCertRevocationList
impl Unpin for OwnedCertRevocationList
impl UnwindSafe for OwnedCertRevocationList
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
Mutably borrows from an owned value. Read more