Expand description
Certificate revocation checking for pkix-path and pkix-chain.
Provides the RevocationChecker trait and implementations:
| Type | Feature | Description |
|---|---|---|
NoRevocation | (always) | Zero-cost; always reports not-revoked |
CrlChecker | crl | Offline CRL validation (you supply DER bytes) |
OcspChecker | ocsp | Offline 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§
- CrlChecker
crl - Offline CRL-based revocation checker.
- NoRevocation
- A no-op revocation checker that always reports certificates as not revoked.
- Ocsp
Checker ocsp - Offline OCSP-based revocation checker.
Enums§
- Error
- Errors returned by revocation checking.
Traits§
- Revocation
Checker - Pluggable revocation checking.
Type Aliases§
- Result
- Result alias for this crate.