Bit Crypt is an open source, cross-platform file encryption software. Using Argon 2 and AES to encrypt and decrypt selected files.
To compile this code, use g++ or MinGW if on Windows
Download and build wxWidgets using their online instructions for your OS
cd build
cmake .. (add -G"MinGW Makefiles" flag if on Windows)
make
Executable will be placed in bin folder
Enter the build folder
cd build
Build the CMake file
cmake .. (add -G"MinGW Makefiles" flag if on Windows)
Install Executable
sudo make install
1)Unzip the BitCrypt.tar file anywhere on your computer. 2)Follow instructions to install the program.
1)Follow the steps from this article to allow unidentified developers.
2)extract the zip file and move BitCrypt.app into your local Applications folder
After installing the project a cmake_install.cmake file will be created in the Build folder.
Build CMake the same way as installing.
Finally uninstall using
sudo make uninstall
- CMake - Compilation Control
- Argon2 - Password hashing library used
- Itay Bachar - itaybachar
This project is licensed under the MIT License - see the LICENSE file for details
- Hat tip to Argon2 authors