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
readonlyfullName?:readonlyGeneralName[]— Absolute GeneralName(s) identifying the distribution point.readonlyrelativeName?:ParsedRelativeDistinguishedName— Name relative to the CRL issuer's distinguished name.