UNPKG

xypriss-security

Version:

Advanced High-Performance Security Framework. Military-grade encryption, post-quantum resilience, and fortified data structures.

47 lines 2.71 kB
"use strict"; /*************************************************************************** * XyPriss Security - Advanced High-Performance Security Framework * * @author NEHONIX (Nehonix-Team - https://github.com/Nehonix-Team) * @license Nehonix Open Source License (NOSL) * * Copyright (c) 2025 NEHONIX. All rights reserved. ****************************************************************************/ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __exportStar = (this && this.__exportStar) || function(m, exports) { for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.getWordlist = exports.MAX_GENERATE_LENGTH = exports.MIN_GENERATE_LENGTH = exports.CHARSETS = exports.Password = void 0; var Password_1 = require("./core/Password"); Object.defineProperty(exports, "Password", { enumerable: true, get: function () { return Password_1.Password; } }); /** * # XyPriss Security * * An advanced, high-performance security framework powered by a Go-based core. */ // --- 1. CORE API (Go-Powered High-Level Primitives) --- __exportStar(require("./core/index"), exports); // Exposes Hash, Password, Random, Keys, etc. // --- 2. MODULAR COMPONENTS (TS-Enhanced Logic) --- __exportStar(require("./components/index"), exports); // --- 3. UTILITIES --- __exportStar(require("./utils/index"), exports); __exportStar(require("./components/encryption/index"), exports); __exportStar(require("./components/serializer"), exports); __exportStar(require("./components/cache/SecureCacheAdapter"), exports); var PasswordMDict_1 = require("./mods/PasswordMDict"); Object.defineProperty(exports, "CHARSETS", { enumerable: true, get: function () { return PasswordMDict_1.CHARSETS; } }); Object.defineProperty(exports, "MIN_GENERATE_LENGTH", { enumerable: true, get: function () { return PasswordMDict_1.MIN_GENERATE_LENGTH; } }); Object.defineProperty(exports, "MAX_GENERATE_LENGTH", { enumerable: true, get: function () { return PasswordMDict_1.MAX_GENERATE_LENGTH; } }); Object.defineProperty(exports, "getWordlist", { enumerable: true, get: function () { return PasswordMDict_1.getWordlist; } }); //# sourceMappingURL=index.js.map