@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
46 lines (45 loc) • 2.15 kB
JavaScript
/* eslint-disable */
import { ASN1TagClass as _TagClass } from "@wildboar/asn1";
import * as $ from "@wildboar/asn1/functional";
import { _decode_AuthKeyAttributes, _encode_AuthKeyAttributes, } from "../PKCS-15/AuthKeyAttributes.ta.mjs";
import { _decode_CertBasedAuthenticationAttributes, _encode_CertBasedAuthenticationAttributes, } from "../PKCS-15/CertBasedAuthenticationAttributes.ta.mjs";
let _cached_decoder_for_ExternalAuthObjectAttributes = null;
/**
* @summary Decodes an ASN.1 element into a(n) ExternalAuthObjectAttributes
* @function
* @param {_Element} el The element being decoded.
* @returns {ExternalAuthObjectAttributes} The decoded data structure.
*/
export function _decode_ExternalAuthObjectAttributes(el) {
if (!_cached_decoder_for_ExternalAuthObjectAttributes) {
_cached_decoder_for_ExternalAuthObjectAttributes = $._decode_extensible_choice({
"UNIVERSAL 16": [
"authKeyAttributes",
_decode_AuthKeyAttributes,
],
"CONTEXT 0": [
"certBasedAttributes",
$._decode_implicit(() => _decode_CertBasedAuthenticationAttributes),
],
});
}
return _cached_decoder_for_ExternalAuthObjectAttributes(el);
}
let _cached_encoder_for_ExternalAuthObjectAttributes = null;
/**
* @summary Encodes a(n) ExternalAuthObjectAttributes 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 ExternalAuthObjectAttributes, encoded as an ASN.1 Element.
*/
export function _encode_ExternalAuthObjectAttributes(value, elGetter) {
if (!_cached_encoder_for_ExternalAuthObjectAttributes) {
_cached_encoder_for_ExternalAuthObjectAttributes = $._encode_choice({
authKeyAttributes: _encode_AuthKeyAttributes,
certBasedAttributes: $._encode_implicit(_TagClass.context, 0, () => _encode_CertBasedAuthenticationAttributes, $.BER),
}, $.BER);
}
return _cached_encoder_for_ExternalAuthObjectAttributes(value, elGetter);
}
/* eslint-enable */