ParsedIssuingDistributionPoint
Decoded Issuing Distribution Point CRL extension (RFC 5280 §5.2.5). Constrains which certificates a CRL covers (scope, reasons, indirection).
ts
interface ParsedIssuingDistributionPoint {
readonly distributionPoint?: ParsedDistributionPointName;
readonly onlyContainsUserCerts?: boolean;
readonly onlyContainsCACerts?: boolean;
readonly onlySomeReasons?: ParsedBitFlags<DistributionPointReason>;
readonly indirectCrl?: boolean;
readonly onlyContainsAttributeCerts?: boolean;
}Properties
readonlydistributionPoint?:ParsedDistributionPointName— Where to fetch this CRL, if specified.readonlyonlyContainsUserCerts?:boolean— When true, this CRL only covers end-entity certificates. Default false.readonlyonlyContainsCACerts?:boolean— When true, this CRL only covers CA certificates. Default false.readonlyonlySomeReasons?:ParsedBitFlags<DistributionPointReason> — Limits the CRL to these revocation reasons. Absent means all reasons.readonlyindirectCrl?:boolean— When true, this CRL may contain entries from CAs other than the issuer. Default false.readonlyonlyContainsAttributeCerts?:boolean— When true, this CRL only covers attribute certificates. Default false.