import { ASN1Element as _Element, OCTET_STRING, OPTIONAL } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { CMSVersion } from "../CMSSigncryption/CMSVersion.ta.mjs"; import { Attributes } from "../CryptographicMessageSyntax-2010/Attributes.ta.mjs"; import { EncryptedContentInfo } from "../CryptographicMessageSyntax-2010/EncryptedContentInfo.ta.mjs"; /** * @summary NamedKeyEncryptedData * @description * * ### ASN.1 Definition: * * ```asn1 * NamedKeyEncryptedData ::= SEQUENCE { * version CMSVersion, * keyName [0] OCTET STRING OPTIONAL, * encryptedContentInfo EncryptedContentInfo, * unprotectedAttrs [1] IMPLICIT Attributes * {{UnprotectedEncAttributes}} OPTIONAL * } * ``` * */ export declare class NamedKeyEncryptedData { /** * @summary `version`. * @public * @readonly */ readonly version: CMSVersion; /** * @summary `keyName`. * @public * @readonly */ readonly keyName: OPTIONAL; /** * @summary `encryptedContentInfo`. * @public * @readonly */ readonly encryptedContentInfo: EncryptedContentInfo; /** * @summary `unprotectedAttrs`. * @public * @readonly */ readonly unprotectedAttrs?: OPTIONAL; constructor( /** * @summary `version`. * @public * @readonly */ version: CMSVersion, /** * @summary `keyName`. * @public * @readonly */ keyName: OPTIONAL, /** * @summary `encryptedContentInfo`. * @public * @readonly */ encryptedContentInfo: EncryptedContentInfo, /** * @summary `unprotectedAttrs`. * @public * @readonly */ unprotectedAttrs?: OPTIONAL); /** * @summary Restructures an object into a NamedKeyEncryptedData * @description * * This takes an `object` and converts it to a `NamedKeyEncryptedData`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `NamedKeyEncryptedData`. * @returns {NamedKeyEncryptedData} */ static _from_object(_o: { [_K in keyof NamedKeyEncryptedData]: NamedKeyEncryptedData[_K]; }): NamedKeyEncryptedData; } /** * @summary The Leading Root Component Types of NamedKeyEncryptedData * @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_NamedKeyEncryptedData: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of NamedKeyEncryptedData * @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_NamedKeyEncryptedData: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of NamedKeyEncryptedData * @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_NamedKeyEncryptedData: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) NamedKeyEncryptedData * @function * @param {_Element} el The element being decoded. * @returns {NamedKeyEncryptedData} The decoded data structure. */ export declare function _decode_NamedKeyEncryptedData(el: _Element): NamedKeyEncryptedData; /** * @summary Encodes a(n) NamedKeyEncryptedData into an ASN.1 Element. * @function * @param value The element being encoded. * @param elGetter A function that can be used to get new ASN.1 elements. * @returns {_Element} The NamedKeyEncryptedData, encoded as an ASN.1 Element. */ export declare function _encode_NamedKeyEncryptedData(value: NamedKeyEncryptedData, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=NamedKeyEncryptedData.ta.d.mts.map