This project securely hides text messages inside images using AES encryption and LSB steganography.
- AES (EAX mode) encryption for confidentiality
- Least Significant Bit (LSB) image embedding
- Decryption and data extraction with integrity check
- Implemented in Python using Google Colab
AES_steganography.ipynb: Full implementation in Colabcover_image.png: Sample input imagestego_output.png: Image with hidden message
| Library | Purpose |
|---|---|
Pillow |
Image processing and pixel manipulation |
pycryptodome |
AES encryption/decryption (EAX mode) |
Install using:
pip install pillow pycryptodome