UNPKG

x509-ts

Version:

Encode and decode X.509 (TLS) Certificates, Attribute Certificates, CRLs, and more.

12 lines 465 B
import { DERElement } from "asn1-ts"; export default class UnboundedDirectoryString { readonly value: string; constructor(value: string); toString(): string; static print(element: DERElement): string; static fromElement(value: DERElement): UnboundedDirectoryString; toElement(): DERElement; static fromBytes(value: Uint8Array): UnboundedDirectoryString; toBytes(): Uint8Array; } //# sourceMappingURL=UnboundedDirectoryString.d.ts.map