import { ASN1Element as _Element, BIT_STRING } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { AlgorithmIdentifier } from "@wildboar/pki-stub"; /** * @summary MULTY_SIGNED_parmeters_sign * @description * * ### ASN.1 Definition: * * ```asn1 * MULTY-SIGNED-parmeters-sign ::= SEQUENCE { -- REMOVED_FROM_UNNESTING -- } * ``` * */ export declare class MULTY_SIGNED_parmeters_sign<_ToBeSigned> { /** * @summary `algo`. * @public * @readonly */ readonly algo: AlgorithmIdentifier; /** * @summary `signature`. * @public * @readonly */ readonly signature: BIT_STRING; /** * @summary Extensions that are not recognized. * @public * @readonly */ readonly _unrecognizedExtensionsList: _Element[]; constructor( /** * @summary `algo`. * @public * @readonly */ algo: AlgorithmIdentifier, /** * @summary `signature`. * @public * @readonly */ signature: BIT_STRING, /** * @summary Extensions that are not recognized. * @public * @readonly */ _unrecognizedExtensionsList?: _Element[]); /** * @summary Restructures an object into a MULTY_SIGNED_parmeters_sign * @description * * This takes an `object` and converts it to a `MULTY_SIGNED_parmeters_sign`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `MULTY_SIGNED_parmeters_sign`. * @returns {MULTY_SIGNED_parmeters_sign} */ static _from_object(_o: Partial<{ [_K in keyof MULTY_SIGNED_parmeters_sign]: MULTY_SIGNED_parmeters_sign[_K]; }>): MULTY_SIGNED_parmeters_sign; } /** * @summary The Leading Root Component Types of MULTY_SIGNED_parmeters_sign * @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_MULTY_SIGNED_parmeters_sign: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of MULTY_SIGNED_parmeters_sign * @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_MULTY_SIGNED_parmeters_sign: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of MULTY_SIGNED_parmeters_sign * @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_MULTY_SIGNED_parmeters_sign: $.ComponentSpec[]; /** * @summary Returns a function that will decode an ASN.1 element into a(n) MULTY_SIGNED_parmeters_sign * @function * @param {_Element} el The element being decoded. * @returns A function that will decode an ASN.1 element. */ export declare function _get_decoder_for_MULTY_SIGNED_parmeters_sign(_decode_ToBeSigned: $.ASN1Decoder): $.ASN1Decoder>; /** * @summary Returns a function that will encode a(n) MULTY_SIGNED_parmeters_sign into an ASN.1 Element. * @function * @returns A function that will encode a(n) MULTY_SIGNED_parmeters_sign as an ASN.1 element. */ export declare function _get_encoder_for_MULTY_SIGNED_parmeters_sign(_encode_ToBeSigned: $.ASN1Encoder): $.ASN1Encoder>; //# sourceMappingURL=MULTY-SIGNED-parmeters-sign.ta.d.mts.map