@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
130 lines (129 loc) • 4.25 kB
JavaScript
/* eslint-disable */
import { ASN1ConstructionError as _ConstructionError, ASN1TagClass as _TagClass, } from "@wildboar/asn1";
import * as $ from "@wildboar/asn1/functional";
import { _decode_DigestInfoWithDefault, _encode_DigestInfoWithDefault, } from "../PKCS-15/DigestInfoWithDefault.ta.mjs";
/**
* @summary URL_urlWithDigest
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* URL-urlWithDigest ::= SEQUENCE { -- REMOVED_FROM_UNNESTING -- }
* ```
*
*/
export class URL_urlWithDigest {
url;
digest;
constructor(
/**
* @summary `url`.
* @public
* @readonly
*/
url,
/**
* @summary `digest`.
* @public
* @readonly
*/
digest) {
this.url = url;
this.digest = digest;
}
/**
* @summary Restructures an object into a URL_urlWithDigest
* @description
*
* This takes an `object` and converts it to a `URL_urlWithDigest`.
*
* @public
* @static
* @method
* @param {Object} _o An object having all of the keys and values of a `URL_urlWithDigest`.
* @returns {URL_urlWithDigest}
*/
static _from_object(_o) {
return new URL_urlWithDigest(_o.url, _o.digest);
}
}
/**
* @summary The Leading Root Component Types of URL_urlWithDigest
* @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_URL_urlWithDigest = [
new $.ComponentSpec("url", false, $.hasTag(_TagClass.universal, 22)),
new $.ComponentSpec("digest", false, $.hasTag(_TagClass.universal, 16)),
];
/**
* @summary The Trailing Root Component Types of URL_urlWithDigest
* @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_URL_urlWithDigest = [];
/**
* @summary The Extension Addition Component Types of URL_urlWithDigest
* @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_URL_urlWithDigest = [];
let _cached_decoder_for_URL_urlWithDigest = null;
/**
* @summary Decodes an ASN.1 element into a(n) URL_urlWithDigest
* @function
* @param {_Element} el The element being decoded.
* @returns {URL_urlWithDigest} The decoded data structure.
*/
export function _decode_URL_urlWithDigest(el) {
if (!_cached_decoder_for_URL_urlWithDigest) {
_cached_decoder_for_URL_urlWithDigest = function (el) {
const sequence = el.sequence;
if (sequence.length < 2) {
throw new _ConstructionError("URL-urlWithDigest contained only " +
sequence.length.toString() +
" elements.");
}
sequence[0].name = "url";
sequence[1].name = "digest";
let url;
let digest;
url = $._decodeIA5String(sequence[0]);
digest = _decode_DigestInfoWithDefault(sequence[1]);
return new URL_urlWithDigest(url, digest);
};
}
return _cached_decoder_for_URL_urlWithDigest(el);
}
let _cached_encoder_for_URL_urlWithDigest = null;
/**
* @summary Encodes a(n) URL_urlWithDigest 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 URL_urlWithDigest, encoded as an ASN.1 Element.
*/
export function _encode_URL_urlWithDigest(value, elGetter) {
if (!_cached_encoder_for_URL_urlWithDigest) {
_cached_encoder_for_URL_urlWithDigest = function (value) {
return $._encodeSequence([]
.concat([
/* REQUIRED */ $._encodeIA5String(value.url, $.BER),
/* REQUIRED */ _encode_DigestInfoWithDefault(value.digest, $.BER),
])
.filter((c) => !!c), $.BER);
};
}
return _cached_encoder_for_URL_urlWithDigest(value, elGetter);
}
/* eslint-enable */