import { ASN1Element as _Element, BIT_STRING, OPTIONAL } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { AlgoInvoke } from "@wildboar/pki-stub"; /** * @summary ICV_Invoke * @description * * ### ASN.1 Definition: * * ```asn1 * ICV-Invoke{ToBeProtected} ::= SEQUENCE { * toBeProtected ToBeProtected, * dynParms [0] AlgoInvoke{{SupportedIcvAlgorithms}} OPTIONAL, * icv BIT STRING, * ... } * ``` * */ export declare class ICV_Invoke { /** * @summary `toBeProtected`. * @public * @readonly */ readonly toBeProtected: ToBeProtected; /** * @summary `dynParms`. * @public * @readonly */ readonly dynParms: OPTIONAL; /** * @summary `icv`. * @public * @readonly */ readonly icv: BIT_STRING; /** * @summary Extensions that are not recognized. * @public * @readonly */ readonly _unrecognizedExtensionsList: _Element[]; constructor( /** * @summary `toBeProtected`. * @public * @readonly */ toBeProtected: ToBeProtected, /** * @summary `dynParms`. * @public * @readonly */ dynParms: OPTIONAL, /** * @summary `icv`. * @public * @readonly */ icv: BIT_STRING, /** * @summary Extensions that are not recognized. * @public * @readonly */ _unrecognizedExtensionsList?: _Element[]); /** * @summary Restructures an object into a ICV_Invoke * @description * * This takes an `object` and converts it to a `ICV_Invoke`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `ICV_Invoke`. * @returns {ICV_Invoke} */ static _from_object(_o: Partial<{ [_K in keyof ICV_Invoke]: ICV_Invoke[_K]; }>): ICV_Invoke; } /** * @summary The Leading Root Component Types of ICV_Invoke * @description * * This is an array of `ComponentSpec`s that define how to decode the leading root component type list of a SET or SEQUENCE. * * @constant */ export declare const _root_component_type_list_1_spec_for_ICV_Invoke: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of ICV_Invoke * @description * * This is an array of `ComponentSpec`s that define how to decode the trailing root component type list of a SET or SEQUENCE. * * @constant */ export declare const _root_component_type_list_2_spec_for_ICV_Invoke: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of ICV_Invoke * @description * * This is an array of `ComponentSpec`s that define how to decode the extension addition component type list of a SET or SEQUENCE. * * @constant */ export declare const _extension_additions_list_spec_for_ICV_Invoke: $.ComponentSpec[]; /** * @summary Returns a function that will decode an ASN.1 element into a(n) ICV_Invoke * @function * @param {_Element} el The element being decoded. * @returns A function that will decode an ASN.1 element. */ export declare function _get_decoder_for_ICV_Invoke(_decode_ToBeProtected: $.ASN1Decoder): $.ASN1Decoder>; /** * @summary Returns a function that will encode a(n) ICV_Invoke into an ASN.1 Element. * @function * @returns A function that will encode a(n) ICV_Invoke as an ASN.1 element. */ export declare function _get_encoder_for_ICV_Invoke(_encode_ToBeProtected: $.ASN1Encoder): $.ASN1Encoder>; //# sourceMappingURL=ICV-Invoke.ta.d.mts.map