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.
31 lines (27 loc) • 1.02 kB
JavaScript
;
var secureStringCore = require('./core/secure-string-core.js');
require('crypto');
require('../../types/secure-memory.js');
var entropyAnalyzer = require('./advanced/entropy-analyzer.js');
var quantumSafe = require('./advanced/quantum-safe.js');
var performanceMonitor = require('./advanced/performance-monitor.js');
/**
* SecureString Modular Architecture
* Main export file for the refactored SecureString
*/
/**
* Factory functions for common use cases
*/
/**
* Creates a new SecureString with default settings
*/
function createSecureString(...args) {
return new secureStringCore.SecureString(...args);
}
exports.SecureString = secureStringCore.SecureString;
exports.default = secureStringCore.SecureString;
exports.EntropyAnalyzer = entropyAnalyzer.EntropyAnalyzer;
exports.QuantumSafeOperations = quantumSafe.QuantumSafeOperations;
exports.PerformanceMonitor = performanceMonitor.PerformanceMonitor;
exports.createSecureString = createSecureString;
//# sourceMappingURL=index.js.map