@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
132 lines (131 loc) • 4 kB
JavaScript
/* eslint-disable */
import { ASN1ConstructionError as _ConstructionError, ASN1TagClass as _TagClass, } from "@wildboar/asn1";
import * as $ from "@wildboar/asn1/functional";
/**
* @summary CRLBag
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* CRLBag ::= SEQUENCE {
* crlId BAG-TYPE.&id ({CRLTypes}),
* crltValue [0] EXPLICIT BAG-TYPE.&Type ({CRLTypes}{@crlId})
* }
* ```
*
*/
export class CRLBag {
crlId;
crltValue;
constructor(
/**
* @summary `crlId`.
* @public
* @readonly
*/
crlId,
/**
* @summary `crltValue`.
* @public
* @readonly
*/
crltValue) {
this.crlId = crlId;
this.crltValue = crltValue;
}
/**
* @summary Restructures an object into a CRLBag
* @description
*
* This takes an `object` and converts it to a `CRLBag`.
*
* @public
* @static
* @method
* @param {Object} _o An object having all of the keys and values of a `CRLBag`.
* @returns {CRLBag}
*/
static _from_object(_o) {
return new CRLBag(_o.crlId, _o.crltValue);
}
}
/**
* @summary The Leading Root Component Types of CRLBag
* @description
*
* This is an array of `ComponentSpec`s that define how to decode the leading root component type list of a SET or SEQUENCE.
*
* @constant
*/
export const _root_component_type_list_1_spec_for_CRLBag = [
new $.ComponentSpec("crlId", false, $.hasTag(_TagClass.universal, 6)),
new $.ComponentSpec("crltValue", false, $.hasTag(_TagClass.context, 0)),
];
/**
* @summary The Trailing Root Component Types of CRLBag
* @description
*
* This is an array of `ComponentSpec`s that define how to decode the trailing root component type list of a SET or SEQUENCE.
*
* @constant
*/
export const _root_component_type_list_2_spec_for_CRLBag = [];
/**
* @summary The Extension Addition Component Types of CRLBag
* @description
*
* This is an array of `ComponentSpec`s that define how to decode the extension addition component type list of a SET or SEQUENCE.
*
* @constant
*/
export const _extension_additions_list_spec_for_CRLBag = [];
let _cached_decoder_for_CRLBag = null;
/**
* @summary Decodes an ASN.1 element into a(n) CRLBag
* @function
* @param {_Element} el The element being decoded.
* @returns {CRLBag} The decoded data structure.
*/
export function _decode_CRLBag(el) {
if (!_cached_decoder_for_CRLBag) {
_cached_decoder_for_CRLBag = function (el) {
const sequence = el.sequence;
if (sequence.length < 2) {
throw new _ConstructionError("CRLBag contained only " +
sequence.length.toString() +
" elements.");
}
sequence[0].name = "crlId";
sequence[1].name = "crltValue";
let crlId;
let crltValue;
crlId = $._decodeObjectIdentifier(sequence[0]);
crltValue = $._decode_explicit(() => $._decodeAny)(sequence[1]);
return new CRLBag(crlId, crltValue);
};
}
return _cached_decoder_for_CRLBag(el);
}
let _cached_encoder_for_CRLBag = null;
/**
* @summary Encodes a(n) CRLBag 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 CRLBag, encoded as an ASN.1 Element.
*/
export function _encode_CRLBag(value, elGetter) {
if (!_cached_encoder_for_CRLBag) {
_cached_encoder_for_CRLBag = function (value) {
return $._encodeSequence([]
.concat([
/* REQUIRED */ $._encodeObjectIdentifier(value.crlId, $.BER),
/* REQUIRED */ $._encode_explicit(_TagClass.context, 0, () => $._encodeAny, $.BER)(value.crltValue, $.BER),
])
.filter((c) => !!c), $.BER);
};
}
return _cached_encoder_for_CRLBag(value, elGetter);
}
/* eslint-enable */