Skip to main content

Crate pkix_revocation

Crate pkix_revocation 

Source
Expand description

Certificate revocation checking for pkix-path and pkix-chain.

Provides the RevocationChecker trait and implementations:

TypeFeatureDescription
NoRevocation(always)Zero-cost; always reports not-revoked
CrlCheckercrlOffline CRL validation (you supply DER bytes)
OcspCheckerocspOffline OCSP response validation

§no_std note

The core trait and NoRevocation are no_std. Feature-gated checkers that perform network I/O are std-only and gated behind separate features.

Structs§

CrlCheckercrl
Offline CRL-based revocation checker.
NoRevocation
A no-op revocation checker that always reports certificates as not revoked.
OcspCheckerocsp
Offline OCSP-based revocation checker.

Enums§

Error
Errors returned by revocation checking.

Traits§

RevocationChecker
Pluggable revocation checking.

Type Aliases§

Result
Result alias for this crate.