@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
25 lines • 902 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.rc2CBC = exports.encryptionAlgorithm = void 0;
/* eslint-disable */
const asn1_ts_1 = require("asn1-ts");
const encryptionAlgorithm_va_1 = require("../PKCS5v2-1/encryptionAlgorithm.va");
var encryptionAlgorithm_va_2 = require("../PKCS5v2-1/encryptionAlgorithm.va");
Object.defineProperty(exports, "encryptionAlgorithm", { enumerable: true, get: function () { return encryptionAlgorithm_va_2.encryptionAlgorithm; } });
/* START_OF_SYMBOL_DEFINITION rc2CBC */
/**
* @summary rc2CBC
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* rc2CBC OBJECT IDENTIFIER ::= {encryptionAlgorithm 2}
* ```
*
* @constant
*/
exports.rc2CBC = new asn1_ts_1.ObjectIdentifier([2], encryptionAlgorithm_va_1.encryptionAlgorithm);
/* END_OF_SYMBOL_DEFINITION rc2CBC */
/* eslint-enable */
//# sourceMappingURL=rc2CBC.va.js.map