xypriss-security
Version:
Advanced High-Performance Security Framework. Military-grade encryption, post-quantum resilience, and fortified data structures.
22 lines • 673 B
TypeScript
import { FileCacheOptions } from "../types/cache.type";
declare const CONFIG: {
CACHE_EXPIRY_MS: number;
KEY_ROTATION_MS: number;
ALGORITHM: "aes-256-gcm";
ENCODING: BufferEncoding;
KEY_ITERATIONS: number;
KEY_LENGTH: number;
MAX_CACHE_SIZE_MB: number;
MAX_ENTRIES: number;
COMPRESSION_THRESHOLD_BYTES: number;
CLEANUP_INTERVAL_MS: number;
SECURITY_CHECK_INTERVAL_MS: number;
MAX_KEY_LENGTH: number;
MAX_VALUE_SIZE_MB: number;
};
export { CONFIG };
/**
* Default configuration for file-based cache
*/
export declare const DEFAULT_FILE_CACHE_CONFIG: Required<FileCacheOptions>;
//# sourceMappingURL=cache.config.d.ts.map