import { ASN1Element as _Element } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { ContentEncryptionAlgorithmIdentifier } from "../CryptographicMessageSyntax-2010/ContentEncryptionAlgorithmIdentifier.ta.mjs"; import { EncryptedContentInfoType } from "../CryptographicMessageSyntax-2010/EncryptedContentInfoType.ta.mjs"; /** * @summary EncryptedContentInfo * @description * * ### ASN.1 Definition: * * ```asn1 * EncryptedContentInfo ::= * EncryptedContentInfoType { ContentEncryptionAlgorithmIdentifier } * ``` */ export type EncryptedContentInfo = EncryptedContentInfoType; /** * @summary Decodes an ASN.1 element into a(n) EncryptedContentInfo * @function * @param {_Element} el The element being decoded. * @returns {EncryptedContentInfo} The decoded data structure. */ export declare function _decode_EncryptedContentInfo(el: _Element): EncryptedContentInfo; /** * @summary Encodes a(n) EncryptedContentInfo 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 EncryptedContentInfo, encoded as an ASN.1 Element. */ export declare function _encode_EncryptedContentInfo(value: EncryptedContentInfo, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=EncryptedContentInfo.ta.d.mts.map