Struct webpki::OwnedCertRevocationList
source · pub struct OwnedCertRevocationList { /* private fields */ }
Expand description
Owned representation of a RFC 52801 profile Certificate Revocation List (CRL).
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.
source§impl Clone for OwnedCertRevocationList
impl Clone for OwnedCertRevocationList
source§fn clone(&self) -> OwnedCertRevocationList
fn clone(&self) -> OwnedCertRevocationList
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 moreAuto 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