Skip to content

ParsedDistributionPointName

The name component of a CRL Distribution Point (RFC 5280 §4.2.1.13). Exactly one of fullName or relativeName will be present.

ts
interface ParsedDistributionPointName {
	readonly fullName?: readonly GeneralName[];
	readonly relativeName?: ParsedRelativeDistinguishedName;
}

Properties

  • readonly fullName?: readonly GeneralName[] — Absolute GeneralName(s) identifying the distribution point.
  • readonly relativeName?: ParsedRelativeDistinguishedName — Name relative to the CRL issuer's distinguished name.

Released under the MIT License.