Veilbit is a tool that helps you hide secret messages inside images. It's designed for people who want to keep their information private and secure.
- Command-line tool for hiding messages in images
- Supports multiple image formats:
- BMP
- PNG
- JPEG
- Text file input/output support
git clone https://github.com/tkalum/veilbit.git
cd veilbitmkdir build
cd build
cmake ..
makemkdir build
cd build
cmake ..
cmake --build . --config ReleaseThe resulting executable will be in the build directory.
veilbit hide -i <input_image> -m "Secret message" [-o <output_image>]
veilbit hide -i <input_image> -f <message_file> [-o <output_image>]-ispecifies the input image file (supports BMP, PNG, and JPEG)-mspecifies the message to hide directly-fspecifies a text file containing the message to hide-ospecifies the output image file.
Extract a hidden message
veilbit extract -i <input_image> [-o <output_file>]-ispecifies the image file containing the hidden message-o(optional) specifies the output text file. If not provided, displays message in console
This project is licensed under the MIT License.