pub struct BorrowedCertRevocationList<'a> { /* private fields */ }
Expand description

Borrowed representation of a RFC 52801 profile Certificate Revocation List (CRL).

Implementations

Try to parse the given bytes as a RFC 52801 profile Certificate Revocation List (CRL).

Webpki does not support:

  • CRL versions other than version 2.
  • CRLs missing the next update field.
  • CRLs missing certificate revocation list extensions.
  • Delta CRLs.
  • CRLs larger than (2^32)-1 bytes in size.

Convert the CRL to an OwnedCertRevocationList. This may error if any of the revoked certificates in the CRL are malformed or contain unsupported features.

This function is only available when the “alloc” feature is enabled.

Trait Implementations

Return the DER encoded issuer of the CRL.
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. Read more
Verify the CRL signature using the issuer’s subject public key information (SPKI) and a list of supported signature algorithms. Read more
The type of the elements being iterated over.
Which kind of iterator are we turning this into?
Creates an iterator from a value. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.