Home

Awesome

Steganography Logo

Steganography - hide data inside an image.

nimble install steganography

Github Actions

API reference

About

Encode

This is how you would encode an image with a secret message:

var image = readImage("tests/steganographyLogo.png")
encodeMessage(image, "Hello world this is really cool")
image.writeFile("tests/steganographyLogoEncoded.png")

This is how you would decode an image that contains a secret message:

var image = readImage("tests/steganographyLogoEncoded.png")
doAssert decodeMessage(image) == "Hello world this is really cool"