fortify2-js
Version:
MOST POWERFUL JavaScript Security Library! Military-grade cryptography + 19 enhanced object methods + quantum-resistant algorithms + perfect TypeScript support. More powerful than Lodash with built-in security.
62 lines (59 loc) • 2.53 kB
JavaScript
import { SecureArray } from './core/secure-array-core.js';
import '../../utils/memory/index.js';
import 'crypto';
import '../../types/secure-memory.js';
import '../secure-string/advanced/entropy-analyzer.js';
import '../secure-string/advanced/quantum-safe.js';
import '../secure-string/advanced/performance-monitor.js';
import '../../core/hash/hash-core.js';
import '../../core/hash/hash-types.js';
import '../../core/hash/hash-security.js';
import '../../core/hash/hash-advanced.js';
import '../../algorithms/hash-algorithms.js';
import '../../core/random/random-types.js';
import '../../core/random/random-sources.js';
import 'nehonix-uri-processor';
import '../../types.js';
import 'nehoid';
export { ArrayIdGenerator } from './utils/id-generator.js';
/***************************************************************************
* FortifyJS - Secure Array Main Export
*
* This file contains the main exports for the SecureArray module
*
* @author Nehonix
*
* @license MIT
*
* Copyright (c) 2025 Nehonix. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
***************************************************************************** */
/**
* Main export file for SecureArray
*/
// Import the main SecureArray class
/**
* Creates a SecureArray with initial data
*/
function createSecureArray(initialData, options) {
return new SecureArray(initialData, options);
}
export { SecureArray, createSecureArray, SecureArray as default };
//# sourceMappingURL=index.js.map