UNPKG

pkcs-ts

Version:

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

17 lines 899 B
import { ASN1Element as _Element, INTEGER, OCTET_STRING, OPTIONAL } from "asn1-ts"; import * as $ from "asn1-ts/dist/node/functional"; export declare class Path { readonly path: OCTET_STRING; readonly index: OPTIONAL<INTEGER>; readonly length: OPTIONAL<INTEGER>; constructor(path: OCTET_STRING, index: OPTIONAL<INTEGER>, length: OPTIONAL<INTEGER>); static _from_object(_o: { [_K in keyof Path]: Path[_K]; }): Path; } export declare const _root_component_type_list_1_spec_for_Path: $.ComponentSpec[]; export declare const _root_component_type_list_2_spec_for_Path: $.ComponentSpec[]; export declare const _extension_additions_list_spec_for_Path: $.ComponentSpec[]; export declare function _decode_Path(el: _Element): Path; export declare function _encode_Path(value: Path, elGetter: $.ASN1Encoder<Path>): _Element; //# sourceMappingURL=Path.ta.d.ts.map