UNPKG

@wildboar/pkcs

Version:
31 lines (30 loc) 1.26 kB
import * as $ from "@wildboar/asn1/functional"; import { _decode_Attribute, _encode_Attribute, } from "../CryptographicMessageSyntax/Attribute.ta.mjs"; let _cached_decoder_for_UnauthAttributes = null; /** * @summary Decodes an ASN.1 element into a(n) UnauthAttributes * @function * @param {_Element} el The element being decoded. * @returns {UnauthAttributes} The decoded data structure. */ export function _decode_UnauthAttributes(el) { if (!_cached_decoder_for_UnauthAttributes) { _cached_decoder_for_UnauthAttributes = $._decodeSetOf(() => _decode_Attribute); } return _cached_decoder_for_UnauthAttributes(el); } let _cached_encoder_for_UnauthAttributes = null; /** * @summary Encodes a(n) UnauthAttributes 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 UnauthAttributes, encoded as an ASN.1 Element. */ export function _encode_UnauthAttributes(value, elGetter) { if (!_cached_encoder_for_UnauthAttributes) { _cached_encoder_for_UnauthAttributes = $._encodeSetOf(() => _encode_Attribute, $.BER); } return _cached_encoder_for_UnauthAttributes(value, elGetter); } /* eslint-enable */