https://github.com/adeelh/steganography
A little Python script that hides files inside images
https://github.com/adeelh/steganography
Last synced: 8 months ago
JSON representation
A little Python script that hides files inside images
- Host: GitHub
- URL: https://github.com/adeelh/steganography
- Owner: AdeelH
- Created: 2017-06-29T06:53:03.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-30T00:01:38.000Z (almost 9 years ago)
- Last Synced: 2025-03-25T16:27:25.975Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Allows hiding binary data in an image. The data is broken into bit-chunks of the specified size and each chunk is stored in the least significant bits of each byte of the image.
The reverse operation extracts the data from the image and restores it to a file.
## Usage
```shell
# hide data
$ python steg.py
# unhide data
$ python unsteg.py
```
## Dependencies
- Numpy
- Pillow