pkcs-ts
Version:
PKCS #1 through #15 (Except #11) - Private and Public Keys, Certificates, and More
16 lines • 1.53 kB
TypeScript
import { ASN1Element as _Element, OPTIONAL } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
export declare class KeyInfo_paramsAndOps<ParameterType, OperationsType> {
readonly parameters: ParameterType;
readonly supportedOperations: OPTIONAL<OperationsType>;
constructor(parameters: ParameterType, supportedOperations: OPTIONAL<OperationsType>);
static _from_object(_o: {
[_K in keyof KeyInfo_paramsAndOps<any, any>]: KeyInfo_paramsAndOps<any, any>[_K];
}): KeyInfo_paramsAndOps<any, any>;
}
export declare const _root_component_type_list_1_spec_for_KeyInfo_paramsAndOps: $.ComponentSpec[];
export declare const _root_component_type_list_2_spec_for_KeyInfo_paramsAndOps: $.ComponentSpec[];
export declare const _extension_additions_list_spec_for_KeyInfo_paramsAndOps: $.ComponentSpec[];
export declare function _get_decoder_for_KeyInfo_paramsAndOps<ParameterType, OperationsType>(_decode_ParameterType: $.ASN1Decoder<ParameterType>, _decode_OperationsType: $.ASN1Decoder<OperationsType>): (el: _Element) => KeyInfo_paramsAndOps<ParameterType, OperationsType>;
export declare function _get_encoder_for_KeyInfo_paramsAndOps<ParameterType, OperationsType>(_encode_ParameterType: $.ASN1Encoder<ParameterType>, _encode_OperationsType: $.ASN1Encoder<OperationsType>): (value: KeyInfo_paramsAndOps<ParameterType, OperationsType>, elGetter: $.ASN1Encoder<KeyInfo_paramsAndOps<ParameterType, OperationsType>>) => _Element;
//# sourceMappingURL=KeyInfo-paramsAndOps.ta.d.ts.map