@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
30 lines • 736 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.rsaEncryption = void 0;
/* eslint-disable */
const asn1_ts_1 = require("asn1-ts");
/* START_OF_SYMBOL_DEFINITION rsaEncryption */
/**
* @summary rsaEncryption
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* rsaEncryption OBJECT IDENTIFIER ::= {iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) pkcs-1(1) 1}
* ```
*
* @constant
*/
exports.rsaEncryption = new asn1_ts_1.ObjectIdentifier([
/* iso */ 1,
/* member-body */ 2,
/* us */ 840,
/* rsadsi */ 113549,
/* pkcs */ 1,
/* pkcs-1 */ 1,
1,
]);
/* END_OF_SYMBOL_DEFINITION rsaEncryption */
/* eslint-enable */
//# sourceMappingURL=rsaEncryption.va.js.map