Command line application that implements basic XOR encryption, written in Rust.
Can XOR encrypt from stdin, a file, or recursively encrypting all contents of a directory (including renaming files).
If you've not already done so, install rust: https://www.rust-lang.org/
Then install via cargo with:
bash
$ cargo install xor
```bash $ xor --help xor 1.4.4 Gavyn Riebau
XOR encrypt files or directories using a supplied key.
In it's simplest form, reads input from stdin, encrypts it against a key and writes the result to stdout. The "key" option can be either a path to a file or a string of characters.
When the "recursive" option is used, files under a given directory are recursively encrypted. Files are renamed by XORing the original name against the provided key, then hexifying the result. To decrypt you must use the "decrypt" flag, files are then renamed by unhexifying then XORing.
USAGE:
xor [FLAGS] [OPTIONS] --key
FLAGS: -d, --decrypt Decrypt directory names rather than encrypting them. Applies when using the "recursive" option to encrypt a directory. When set, directory names are decrypted by unhexifying then XORing. When not set, directory names are encrypted by XORing then hexifying. -f, --force Don't show warning prompt if the key size is too small and key bytes will have to be re-used. Re-using key bytes makes the encryption vulnerable to being decrypted. -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-i, --input
The following is an example of encrypting some data and then decrypting it again using the same key
Original data.
bash
$ cat lorem_ipsum.txt
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Encrypt the data using the key "12345".
bash
$ xor -k "12345" -i lorem_ipsum.txt -o lorem_ipsum.enc
$ cat lorem_ipsum.enc
}]AQX[CG@\W[Y^@G\ERYPEWZ_AVWATFFFPVZD\BQZZRW_]A@QQV\PXG@YZUGQXA]A\_QZP\UG]@DFXTS]AQTFPZ]]AQ\STZTS_]DDS`EVZ\\RP\[]]XDVZ\P_DD[@[^AGF@UVLPCQZ@TE[\ZD^_UXR]XTS]A]F\ZG\GGT][BA\AVLTSWZ\_\PZQ\ZFTCFUAwA\BRAATZF@CWPZ]]A\_AQECW[Q[UWA]A[]C^^FDAPFVCT^Z@TA@QR[_X@\W[Y^@VPDUARXSG[D^_UASA]TEGAtJPQEEWFFB[]@^QPUPRSGVDBZPTESG[^\DG^[WQ[EG@_F][QFXEPBA\]UR\R[RQTAVF@_FYZ]^Z@P\ZYXVQFE_UW^@FY;
Decrypt the encrypted data using the same key as before.
bash
$ xor -k "12345" -i lorem_ipsum.enc -o lorem_ipsum.dec
$ cat lorem_ipsum.dec
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
List the directory ```bash $ ls -R directoryone directorytwo example
./directoryone: childdirectory file_one
./directoryone/childdirectory: file_three
./directorytwo: filetwo ```
Recursively encrypt all files and child directories. ```bash $ xor -k "12345" -r . $ ls -R 555B415156455D414D6A5E5C56 555B415156455D414D6A45455C
./555B415156455D414D6A5E5C56: 525A5A58516E565A465052465C464C 575B5F516A5E5C56
./555B415156455D414D6A5E5C56/525A5A58516E565A465052465C464C: 575B5F516A455A415150
./555B415156455D414D6A45455C: 575B5F516A45455C ```
Recursively decrypt all files and child directories. ```bash $ xor -k "12345" -r . -d $ ls -R directoryone directorytwo example
./directoryone: childdirectory file_one
./directoryone/childdirectory: file_three
./directorytwo: filetwo ```