Struct rustls::server::UnparsedCertRevocationList
source · pub struct UnparsedCertRevocationList(pub Vec<u8>);
Expand description
An unparsed DER encoded Certificate Revocation List (CRL).
Tuple Fields§
§0: Vec<u8>
Implementations§
source§impl UnparsedCertRevocationList
impl UnparsedCertRevocationList
sourcepub fn parse(&self) -> Result<OwnedCertRevocationList, CertRevocationListError>
pub fn parse(&self) -> Result<OwnedCertRevocationList, CertRevocationListError>
Parse the CRL DER, yielding a webpki::CertRevocationList
or an error if the CRL
is malformed, or uses unsupported features.