CandidatePath
A signature-verified certification path from leaf to root, before constraint validation.
ts
interface CandidatePath {
readonly leaf: ParsedCertificate;
readonly chain: readonly ParsedCertificate[];
readonly root: ParsedCertificate;
}Properties
readonlyleaf:ParsedCertificate— Parsed end-entity certificate.readonlychain:readonlyParsedCertificate[]— Full chain in leaf-to-root order (includes both leaf and root).readonlyroot:ParsedCertificate— Trusted root that terminates the path.