UNPKG

pkcs-ts

Version:

PKCS #1 through #15 (Except #11) - Private and Public Keys, Certificates, and More

17 lines 1.06 kB
import { ASN1Element as _Element, INTEGER } from "asn1-ts"; import * as $ from "asn1-ts/dist/node/functional"; export { KEY_IDENTIFIER } from "../PKCS-15/KEY-IDENTIFIER.oca"; export declare class CredentialIdentifier { readonly idType: INTEGER; readonly idValue: _Element; constructor(idType: INTEGER, idValue: _Element); static _from_object(_o: { [_K in keyof CredentialIdentifier]: CredentialIdentifier[_K]; }): CredentialIdentifier; } export declare const _root_component_type_list_1_spec_for_CredentialIdentifier: $.ComponentSpec[]; export declare const _root_component_type_list_2_spec_for_CredentialIdentifier: $.ComponentSpec[]; export declare const _extension_additions_list_spec_for_CredentialIdentifier: $.ComponentSpec[]; export declare function _decode_CredentialIdentifier(el: _Element): CredentialIdentifier; export declare function _encode_CredentialIdentifier(value: CredentialIdentifier, elGetter: $.ASN1Encoder<CredentialIdentifier>): _Element; //# sourceMappingURL=CredentialIdentifier.ta.d.ts.map