@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
164 lines (163 loc) • 5.75 kB
JavaScript
/* eslint-disable */
import { ASN1ConstructionError as _ConstructionError, ASN1TagClass as _TagClass, } from "@wildboar/asn1";
import * as $ from "@wildboar/asn1/functional";
import { _decode_CMSVersion, _encode_CMSVersion, } from "../CryptographicMessageSyntax/CMSVersion.ta.mjs";
import { _decode_Digest, _encode_Digest, } from "../CryptographicMessageSyntax/Digest.ta.mjs";
import { _decode_DigestAlgorithmIdentifier, _encode_DigestAlgorithmIdentifier, } from "../CryptographicMessageSyntax/DigestAlgorithmIdentifier.ta.mjs";
import { _decode_EncapsulatedContentInfo, _encode_EncapsulatedContentInfo, } from "../CryptographicMessageSyntax/EncapsulatedContentInfo.ta.mjs";
/**
* @summary DigestedData
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* DigestedData ::= SEQUENCE {
* version CMSVersion,
* digestAlgorithm DigestAlgorithmIdentifier,
* encapContentInfo EncapsulatedContentInfo,
* digest Digest
* }
* ```
*
*/
export class DigestedData {
version;
digestAlgorithm;
encapContentInfo;
digest;
constructor(
/**
* @summary `version`.
* @public
* @readonly
*/
version,
/**
* @summary `digestAlgorithm`.
* @public
* @readonly
*/
digestAlgorithm,
/**
* @summary `encapContentInfo`.
* @public
* @readonly
*/
encapContentInfo,
/**
* @summary `digest`.
* @public
* @readonly
*/
digest) {
this.version = version;
this.digestAlgorithm = digestAlgorithm;
this.encapContentInfo = encapContentInfo;
this.digest = digest;
}
/**
* @summary Restructures an object into a DigestedData
* @description
*
* This takes an `object` and converts it to a `DigestedData`.
*
* @public
* @static
* @method
* @param {Object} _o An object having all of the keys and values of a `DigestedData`.
* @returns {DigestedData}
*/
static _from_object(_o) {
return new DigestedData(_o.version, _o.digestAlgorithm, _o.encapContentInfo, _o.digest);
}
}
/**
* @summary The Leading Root Component Types of DigestedData
* @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_DigestedData = [
new $.ComponentSpec("version", false, $.hasTag(_TagClass.universal, 2)),
new $.ComponentSpec("digestAlgorithm", false, $.hasTag(_TagClass.universal, 16)),
new $.ComponentSpec("encapContentInfo", false, $.hasTag(_TagClass.universal, 16)),
new $.ComponentSpec("digest", false, $.hasTag(_TagClass.universal, 4)),
];
/**
* @summary The Trailing Root Component Types of DigestedData
* @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_DigestedData = [];
/**
* @summary The Extension Addition Component Types of DigestedData
* @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_DigestedData = [];
let _cached_decoder_for_DigestedData = null;
/**
* @summary Decodes an ASN.1 element into a(n) DigestedData
* @function
* @param {_Element} el The element being decoded.
* @returns {DigestedData} The decoded data structure.
*/
export function _decode_DigestedData(el) {
if (!_cached_decoder_for_DigestedData) {
_cached_decoder_for_DigestedData = function (el) {
const sequence = el.sequence;
if (sequence.length < 4) {
throw new _ConstructionError("DigestedData contained only " +
sequence.length.toString() +
" elements.");
}
sequence[0].name = "version";
sequence[1].name = "digestAlgorithm";
sequence[2].name = "encapContentInfo";
sequence[3].name = "digest";
let version;
let digestAlgorithm;
let encapContentInfo;
let digest;
version = _decode_CMSVersion(sequence[0]);
digestAlgorithm = _decode_DigestAlgorithmIdentifier(sequence[1]);
encapContentInfo = _decode_EncapsulatedContentInfo(sequence[2]);
digest = _decode_Digest(sequence[3]);
return new DigestedData(version, digestAlgorithm, encapContentInfo, digest);
};
}
return _cached_decoder_for_DigestedData(el);
}
let _cached_encoder_for_DigestedData = null;
/**
* @summary Encodes a(n) DigestedData 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 DigestedData, encoded as an ASN.1 Element.
*/
export function _encode_DigestedData(value, elGetter) {
if (!_cached_encoder_for_DigestedData) {
_cached_encoder_for_DigestedData = function (value) {
return $._encodeSequence([]
.concat([
/* REQUIRED */ _encode_CMSVersion(value.version, $.BER),
/* REQUIRED */ _encode_DigestAlgorithmIdentifier(value.digestAlgorithm, $.BER),
/* REQUIRED */ _encode_EncapsulatedContentInfo(value.encapContentInfo, $.BER),
/* REQUIRED */ _encode_Digest(value.digest, $.BER),
])
.filter((c) => !!c), $.BER);
};
}
return _cached_encoder_for_DigestedData(value, elGetter);
}
/* eslint-enable */