UNPKG

pkcs-ts

Version:

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

21 lines 1.18 kB
import { ASN1Element as _Element, OBJECT_IDENTIFIER, OPTIONAL } from "asn1-ts"; import * as $ from "asn1-ts/dist/node/functional"; import { Path } from "../PKCS-15/Path.ta"; export { Path, _decode_Path, _encode_Path } from "../PKCS-15/Path.ta"; export declare class DDO { readonly oid: OBJECT_IDENTIFIER; readonly odfPath: OPTIONAL<Path>; readonly tokenInfoPath: OPTIONAL<Path>; readonly unusedPath: OPTIONAL<Path>; readonly _unrecognizedExtensionsList: _Element[]; constructor(oid: OBJECT_IDENTIFIER, odfPath: OPTIONAL<Path>, tokenInfoPath: OPTIONAL<Path>, unusedPath: OPTIONAL<Path>, _unrecognizedExtensionsList?: _Element[]); static _from_object(_o: { [_K in keyof DDO]: DDO[_K]; }): DDO; } export declare const _root_component_type_list_1_spec_for_DDO: $.ComponentSpec[]; export declare const _root_component_type_list_2_spec_for_DDO: $.ComponentSpec[]; export declare const _extension_additions_list_spec_for_DDO: $.ComponentSpec[]; export declare function _decode_DDO(el: _Element): DDO; export declare function _encode_DDO(value: DDO, elGetter: $.ASN1Encoder<DDO>): _Element; //# sourceMappingURL=DDO.ta.d.ts.map