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