This is a simple file encryption tool written in C, which uses the XOR cipher for encryption and decryption.
gcc main.c -o main
To Encrypt using CLI (Custom Password): ./main -E /path/to/file /path/to/outputFile <password>
To Encrypt using CLI (Random Password): ./main -E /path/to/file /path/to/outputFile -G <length of random password>
To Decrypt using CLI: ./main -D /path/to/file /path/to/outputFile <password>
For interactive mode run the binary without any arguments: ./main
AGPL-3.0-only