@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
31 lines (30 loc) • 1.26 kB
JavaScript
import * as $ from "@wildboar/asn1/functional";
import { _decode_RecipientInfo, _encode_RecipientInfo, } from "../CryptographicMessageSyntax/RecipientInfo.ta.mjs";
let _cached_decoder_for_RecipientInfos = null;
/**
* @summary Decodes an ASN.1 element into a(n) RecipientInfos
* @function
* @param {_Element} el The element being decoded.
* @returns {RecipientInfos} The decoded data structure.
*/
export function _decode_RecipientInfos(el) {
if (!_cached_decoder_for_RecipientInfos) {
_cached_decoder_for_RecipientInfos = $._decodeSetOf(() => _decode_RecipientInfo);
}
return _cached_decoder_for_RecipientInfos(el);
}
let _cached_encoder_for_RecipientInfos = null;
/**
* @summary Encodes a(n) RecipientInfos 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 RecipientInfos, encoded as an ASN.1 Element.
*/
export function _encode_RecipientInfos(value, elGetter) {
if (!_cached_encoder_for_RecipientInfos) {
_cached_encoder_for_RecipientInfos = $._encodeSetOf(() => _encode_RecipientInfo, $.BER);
}
return _cached_encoder_for_RecipientInfos(value, elGetter);
}
/* eslint-enable */