Stego

Build Status dependency status

stego is a steganographic swiss army knife.

Features

⚒ Usage

```bash

Simple encoding

stego encode --input image.png --output encoded-image.png --txt "Hello, Stego!" # Encodes the message "Hello, Stego!" into the provided image

Simple decoding

stego decode --input encoded-image.png # prints out the encoded message ("Hello, Stego!") hidden in the provided image

Stdin detection

echo "Hello, Stego!" | stego encode --input image.png --output encoded-image.png

Example

cat secret | stego encode -i hostimage.png -o output.png # encodes contents of secret into hostimage.png stego decode -i output.png # prints contents of secret

Help

stego --help stego encode --help stego decode --help ```

📦 Installation

bash cargo install stego

OR

bash git clone https://github.com/ajmwagar/stego cd stego cargo install --path ./ --force

🚥 Roadmap