UNPKG

x509-ts

Version:

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

11 lines 487 B
import { ObjectIdentifier, DERElement } from "asn1-ts"; export default class AccessDescription { readonly accessMethod: ObjectIdentifier; readonly accessLocation: DERElement; constructor(accessMethod: ObjectIdentifier, accessLocation: DERElement); static fromElement(value: DERElement): AccessDescription; toElement(): DERElement; static fromBytes(value: Uint8Array): AccessDescription; toBytes(): Uint8Array; } //# sourceMappingURL=AccessDescription.d.ts.map