Awesome-Python-Scripts/Steg_Tool/README.md
Shankar Jayaprakash 46cc100c5e
Added Steg_Tool Script (#234)
Co-authored-by: Shankar JP <shankarjp12@outlook.com>
2021-10-10 21:13:16 +05:30

21 lines
453 B
Markdown

# 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
```