mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-23 20:11:07 +00:00
46cc100c5e
Co-authored-by: Shankar JP <shankarjp12@outlook.com> |
||
---|---|---|
.. | ||
image.png | ||
README.md | ||
secret.txt | ||
steg.py |
Steganography Tool
- Advanced Image Steganography Tool used to hide files inside Images.
- Uses LSB (Least Significant Bit) Algorithm to store file data inside the image
- Works with only .png format
Commands
python3 steg.py
Input
encode <input_image_name> <output_image_name> <file_name>
decode <encoded_image_name> <extracted_file_name>
Example
encode image.png image_new.png secret.txt
decode image_new.png secret_new.txt