No description
Find a file
2018-10-12 00:31:42 +02:00
testdata added support for binary files 2018-10-12 00:31:42 +02:00
.gitignore initial commit 2018-10-10 22:37:48 +02:00
go.mod initial commit 2018-10-10 22:37:48 +02:00
LICENSE initial commit 2018-10-10 22:37:48 +02:00
README.md added support for binary files 2018-10-12 00:31:42 +02:00
stego.go added support for binary files 2018-10-12 00:31:42 +02:00

Simple steganography program in Go

Hides a string inside the least significant bit (LSB) of all colors of each pixel.

Build

go build -o stego stego.go

Hide

./stego -in testdata/lenna.png -secret testdata/lenna_256.png -out testdata/stego.png

Reveal

./stego -in testdata/stego.png -out lenna_256.png