ParsedDistributionPoint
A decoded DistributionPoint from the CRL Distribution Points extension.
ts
interface ParsedDistributionPoint {
readonly distributionPoint?: ParsedDistributionPointName;
readonly reasons?: ParsedBitFlags<DistributionPointReason>;
readonly crlIssuer?: readonly GeneralName[];
}Properties
readonlydistributionPoint?:ParsedDistributionPointName— Where to fetch the CRL — a fullName URI or relativeName.readonlyreasons?:ParsedBitFlags<DistributionPointReason> — Revocation reason subset this distribution point covers. Absent means all reasons.readonlycrlIssuer?:readonlyGeneralName[]— Entity that signed the CRL, when different from the certificate issuer.