hsynchronous-fs
Version:
Post-Quantum filesystem encryption using a hybrid encryption protocol "hsynchronous"
8 lines (6 loc) • 440 B
TypeScript
declare function cleanup(DRIVE_LETTER: string, FOLDER_PATH: string, ZIP_FILE: any): Promise<void>;
declare function loadKey(KEYFILE: string): Promise<string>;
declare function createBackup(filePath: string): Promise<void>;
declare function deleteBackup(filePath: string): Promise<void>;
declare function secureWipe(data: any, iterations?: number, bytes?: number): void;
export { cleanup, createBackup, deleteBackup, loadKey, secureWipe };