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 more