UNPKG

pkcs-ts

Version:

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

19 lines 1.17 kB
import { ASN1Element as _Element, BIT_STRING, OPTIONAL } from "asn1-ts"; import * as $ from "asn1-ts/dist/node/functional"; import { AlgorithmIdentifier } from "x500-ts/dist/node/modules/AuthenticationFramework/AlgorithmIdentifier.ta"; import { CertId } from "../PKIXCRMF-2009/CertId.ta"; export declare class OOBCertHash { readonly hashAlg: OPTIONAL<AlgorithmIdentifier>; readonly certId: OPTIONAL<CertId>; readonly hashVal: BIT_STRING; constructor(hashAlg: OPTIONAL<AlgorithmIdentifier>, certId: OPTIONAL<CertId>, hashVal: BIT_STRING); static _from_object(_o: { [_K in keyof OOBCertHash]: OOBCertHash[_K]; }): OOBCertHash; } export declare const _root_component_type_list_1_spec_for_OOBCertHash: $.ComponentSpec[]; export declare const _root_component_type_list_2_spec_for_OOBCertHash: $.ComponentSpec[]; export declare const _extension_additions_list_spec_for_OOBCertHash: $.ComponentSpec[]; export declare function _decode_OOBCertHash(el: _Element): OOBCertHash; export declare function _encode_OOBCertHash(value: OOBCertHash, elGetter: $.ASN1Encoder<OOBCertHash>): _Element; //# sourceMappingURL=OOBCertHash.ta.d.ts.map