@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
29 lines • 940 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AlgorithmSet = exports.pkcs15_alg_null = void 0;
/* eslint-disable */
const pkcs15_alg_null_oa_1 = require("../PKCS-15/pkcs15-alg-null.oa");
var pkcs15_alg_null_oa_2 = require("../PKCS-15/pkcs15-alg-null.oa");
Object.defineProperty(exports, "pkcs15_alg_null", { enumerable: true, get: function () { return pkcs15_alg_null_oa_2.pkcs15_alg_null; } });
/* START_OF_SYMBOL_DEFINITION AlgorithmSet */
/**
* @summary AlgorithmSet
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* AlgorithmSet PKCS15-ALGORITHM ::= {
* pkcs15-alg-null,
* ... -- See PKCS #11 for values for the &id field (and parameters)
* }
* ```
*
* @constant
* @type {PKCS15_ALGORITHM[]}
*
*/
exports.AlgorithmSet = [pkcs15_alg_null_oa_1.pkcs15_alg_null];
/* END_OF_SYMBOL_DEFINITION AlgorithmSet */
/* eslint-enable */
//# sourceMappingURL=AlgorithmSet.osa.js.map