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