Stegastatter is a steganography engine that uses LSB (Least Significant Bit) and BPCS (Bit Plane Complexity Segmentation) to hide, extract, and estimate the capacity of images. Additionally stegastatter includes two steganalysis algorithms that can calculate the diffrences between two images and slice it into 24 seperate bit planes. Apart from steganography/steganalysis, Stegastatter uses a wrapping mechanism that consists of encryption, byte shuffling, and error correction. A theoretical overview for the concepts in this project can be found here.
Originally, this project was Stegastatter-Wrapper, but I wanted to isolate the engine from the client/server structure to then publish it to PyPI. If you are looking for the all the commits from the development of the engine/wrapper, please visit this page.
As of 1.0.2, this module is available only on PyPI, instellation via pip:
pip install stegastatter
This module is unsafe in reguard to errror handling. If the functions of this module are called with improper parameters / with invalid data (e.g. attempting to extract data from an image with no data hidden in it), errors will be raised. Consult the errors.py file for info on different errors.