/scrmbl

simple file encryption program

Primary LanguageRustMIT LicenseMIT

scrmbl

a simple file encryption program.

command structure

cargo run -- {{command}} {{file}} {{password}}

commands

encrypt

cargo run -- encrypt test\test.txt reallyGoodPassword123

Encrypts a file line by line using the password argument.

decrypt

cargo run -- decrypt test\test.txt reallyGoodPassword123

Decrypts a file line by line using the password given. If you use the wrong password it just doesn't decrypt the file.