An open API service indexing awesome lists of open source software.

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

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