x509-ts
Version:
Encode and decode X.509 (TLS) Certificates, Attribute Certificates, CRLs, and more.
12 lines • 517 B
TypeScript
import { DERElement } from "asn1-ts";
import AttributeTypeAndValue from "./AttributeTypeAndValue";
export default class RelativeDistinguishedName {
readonly value: AttributeTypeAndValue[];
constructor(value: AttributeTypeAndValue[]);
toString(): string;
static fromElement(value: DERElement): RelativeDistinguishedName;
toElement(): DERElement;
static fromBytes(value: Uint8Array): RelativeDistinguishedName;
toBytes(): Uint8Array;
}
//# sourceMappingURL=RelativeDistinguishedName.d.ts.map