ParsedRelativeDistinguishedName
A single RelativeDistinguishedName SET from an X.501 Name.
ts
interface ParsedRelativeDistinguishedName {
readonly derHex: string;
readonly attributes: readonly ParsedNameAttribute[];
readonly values: Readonly<Partial<Record<NameFieldKey, string>>>;
}Properties
readonlyderHex:string— Hex-encoded DER of this RDN SET element.readonlyattributes:readonlyParsedNameAttribute[]— Attributes within this RDN (usually one, but multi-valued RDNs are legal).readonlyvalues:Readonly<Partial<Record<NameFieldKey,string>>> — First-occurrence map of well-known fields within this RDN.