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