Added batch processing

This commit is contained in:
mihirsanjay
2025-09-24 18:41:36 -05:00
parent a599792cbe
commit 75a5c48f2b
56 changed files with 84 additions and 6 deletions
+1
View File
@@ -19,6 +19,7 @@ fn main() -> std::io::Result<()> {
let fname = args.get(1).unwrap();
let plaintext_bytes = read(fname).expect("Failed to read file");
// Create output files with consistent naming
let mut encrypted_file = File::create("encrypted_Input.bin")?;
let mut key_file = File::create("key.txt")?;