UNPKG

asn1-ts

Version:

ASN.1 encoding and decoding, including BER, CER, and DER.

9 lines (8 loc) 283 B
import type ASN1Element from "../asn1.mjs"; export default class CharacterString { readonly identification: ASN1Element; readonly stringValue: Uint8Array; constructor(identification: ASN1Element, stringValue: Uint8Array); toString(): string; toJSON(): unknown; }