xypriss-security
Version:
Advanced High-Performance Security Framework. Military-grade encryption, post-quantum resilience, and fortified data structures.
23 lines • 977 B
JavaScript
"use strict";
/***************************************************************************
* XyPriss Security - Unified Type System
*
* This module defines the core types and interfaces used throughout the
* XyPriss Security framework. It ensures consistent data structures and
* type safety across all security-related operations.
*
* @author NEHONIX (Nehonix-Team - https://github.com/Nehonix-Team)
* @license Nehonix Open Source License (NOSL)
****************************************************************************/
Object.defineProperty(exports, "__esModule", { value: true });
exports.SecurityLevel = void 0;
/**
* Defines the security levels available for cryptographic operations.
*/
var SecurityLevel;
(function (SecurityLevel) {
SecurityLevel["STANDARD"] = "standard";
SecurityLevel["HIGH"] = "high";
SecurityLevel["MAXIMUM"] = "maximum";
})(SecurityLevel || (exports.SecurityLevel = SecurityLevel = {}));
//# sourceMappingURL=index.js.map