secure-encryption-lib
Version:
A TypeScript library for secure encryption using AES & RSA with automatic key rotation.
8 lines (7 loc) • 495 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RSAKeyManager = exports.SecureEncryption = void 0;
var Encryption_1 = require("./Encryption");
Object.defineProperty(exports, "SecureEncryption", { enumerable: true, get: function () { return Encryption_1.SecureEncryption; } });
var RsaKeyManager_1 = require("./RsaKeyManager");
Object.defineProperty(exports, "RSAKeyManager", { enumerable: true, get: function () { return RsaKeyManager_1.RSAKeyManager; } });