Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1019 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 1019 Bytes

Steganography Security System

Overview

This Python-based application provides a graphical user interface (GUI) for steganography, specifically focusing on hiding and revealing text messages within image files using the LSB (Least Significant Bit) technique.

Tech Stack

  • Tkinter: GUI library for Python.
  • Pillow (PIL): Python Imaging Library for image processing.
  • Stegano: Python library for LSB steganography.

Features

  • Open Image: Select an image file (PNG or JPG) to work with.
  • Hide Message: Input a text message and hide it within the selected image.
  • Save Image: Save the modified image with the hidden message.
  • Show Message: Reveal and display the hidden message from a previously modified image.

Output

image

Installation

Ensure you have Python 3.x installed, and install the required dependencies:

pip install Pillow
pip install stegano