No description
Find a file
2023-05-08 11:17:34 -07:00
.github/workflows Add github actions. 2021-09-01 22:35:31 -07:00
src better formatting 2021-09-01 22:39:01 -07:00
tests Update to use Pixie. 2021-09-01 22:34:36 -07:00
LICENSE Add license 2021-09-30 12:03:21 -07:00
README.md Update readme. 2021-09-30 16:56:41 -07:00
steganography.nimble require updates 2023-05-08 11:17:34 -07:00

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"