A CLI tool for filesystem encryption using OpenSSL's AES in C
- Clone the repository
git clone https://github.com/nishantHolla/box
cd box
- Compile binary and place it in PATH. (restart terminal after running the command)
make release
sudo mv ./out/box /bin
- Create a box in the root of the directory that you want to encrypt.
box create <path_to_directory>
- Wrap the box (encrypt)
box wrap <path_to_directory>
- Unwrap the box (decrypt)
box unwrap <path_to_directory>