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 -dInstall libsodium
To build, simply run the makefile with:
makemake && sudo make install