Skip to content

ivan-grebe/steg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

C++ Steganography Tool

Setup & Compilation

Open a terminal in the project directory and run the following command to compile the application:

g++ steg.cpp -o steganography_tool -std=c++17

This will create an executable file named steganography_tool.

Usage

The tool operates in two modes: encode and decode.

Encode

Hides a message from a text file inside an image.

Syntax:

./steganography_tool encode <input_image> <output_image> <key> <message_file>

Example:

./steganography_tool encode input.png output.png "my-secret-key" message.txt

Decode

Extracts a hidden message from an encoded image.

Syntax:

./steganography_tool decode <encoded_image> <key>

Example:

./steganography_tool decode output.png "my-secret-key"

About

My own custom steghide

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors