lockbyte
Version:
Enterprise-grade password hashing and user authentication library with Argon2-inspired algorithm, memory-hard functions, and comprehensive security features
9 lines • 513 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UserAuth = exports.SecureCrypto = void 0;
// Main exports for the secure-crypto-auth library
var crypto_1 = require("./crypto");
Object.defineProperty(exports, "SecureCrypto", { enumerable: true, get: function () { return crypto_1.SecureCrypto; } });
var auth_1 = require("./auth");
Object.defineProperty(exports, "UserAuth", { enumerable: true, get: function () { return auth_1.UserAuth; } });
//# sourceMappingURL=index.js.map