pub fn validate_path<V>(
chain: &[Certificate],
anchors: &[TrustAnchor],
policy: &ValidationPolicy,
verifier: &V,
) -> Result<ValidatedPath>where
V: SignatureVerifier,Expand description
Validate a certificate chain from subject to a trust anchor.
chain must be ordered leaf-first:
chain[0]is the subject (end-entity) certificatechain[1..]are intermediates in issuer order- The last element of
chainmust be issued by one ofanchors
Validation follows RFC 5280 §6.1. Each certificate’s signature is verified
using verifier, with the signing key taken from the next certificate in
the chain (or the matching trust anchor for the last cert).
§Errors
Returns Err on the first RFC 5280 §6.1 check failure. The error variant
includes the chain index of the failing certificate where applicable.
§Limitations
See crate-level documentation for v0.1 scope limits.
Duplicate certificates in chain (same cert appearing at two indices) are
not detected. They will fail signature verification or name linkage with a
SignatureInvalid or ChainBroken error rather than a dedicated diagnostic.