Skip to content

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

  • readonly distributionPoint?: ParsedDistributionPointName — Where to fetch the CRL — a fullName URI or relativeName.
  • readonly reasons?: ParsedBitFlags<DistributionPointReason> — Revocation reason subset this distribution point covers. Absent means all reasons.
  • readonly crlIssuer?: readonly GeneralName[] — Entity that signed the CRL, when different from the certificate issuer.

Released under the MIT License.