PKI-Lite - v1.0.5
    Preparing search index...

    Type Alias ParseableAsn1<T>

    Interface for types that can be parsed from ASN.1 or DER encoding.

    type ParseableAsn1<T> = {
        fromAsn1?(asn1: Asn1BaseBlock): T;
        fromDer?(der: Uint8Array): T;
    }

    Type Parameters

    • T

      The type that can be parsed

    Index

    Methods