I first built this program with typescript (see fencryption-typescript) but I switched to Rust because typescript was not the most suitable language for this kind of project and also because I wanted to try Rust and low-level programming.
Fencryption is program to encrypt and decrypt files and full directories. Note that this project is at an early stage of development.
THERE IS ABSOLUTELY NO WARRANTY THAT THIS PROGRAM DOES NOT CONTAIN VULNERABILITIES. USE IT AT YOUR OWN RISK.
This program is not supposed to be used in "real conditions" because it is a mere personal project. Although I think above v1.0 the commands encrypt and decrypt should be pretty safe.
fencryption --help
``` A program to encrypt/decrypt text, files and directories
Usage: fencryption [OPTIONS]
Commands: encrypt Encrypt text or files and directories decrypt Decrypt text or files and directories help Print this message or the help of the given subcommand(s)
Options: -D, --debug Enable debug log -h, --help Print help -V, --version Print version ```
things that could be added in the future
pack create
creates a pack from the contents of specified directorypack update
creates a directory where decrypted files (from the encrypted "pack") appear, you can then choose to update the pack with the changes made in the directory or to discard thempack extract
extracts pack to the specified directoryThe lib used in the fencryption binary. You can take a look, it has some interesting things...