A simple and easy to use file encryption program made using libsodium
nacrypt <input_file> -o <output_file> [-e|-d]
## Encrypt
nacrypt plaintext.txt -o plaintext.txt.encrypted -e
## Decrypt
nacrypt plaintext.txt.encryted -o plaintext_decrypted.txt -d
Install libsodium
To build, simply run the makefile with:
make
make && sudo make install