Skip to content

paw3lx/StegoCore

Repository files navigation

What is StegoCore

StegoCore is steganography library for .NET Core. Hide secret data inside images using many algorithms.

Build and Test

More info about this project on https://pawelskaruz.pl/category/daj-sie-poznac-2017/

Installation

StegoCore is available on nuget and MyGet (dev build).

Package manager

Install-Package StegoCore -Version 0.3.1

.NET CLI

dotnet add package StegoCore --version 0.3.1

Getting started

StegoCore is using ImaheSharp as image processing library.

To hide some secret data inside an image do following:

byte[] secretData = System.IO.File.ReadAllBytes("secret.data");
using(var stego = new Stego("someimage.jpg"))
{
    stego.SetSecretData(fileBytes);
    Image<Rgba32> secretImage = stego.Embed(AlgorithmEnum.Lsb);
}

Pretty simple, right? :) Now you can save the image with secret. But how to extract secret from image? It's even simpler.

using(var stego = new Stego("secretImage.jpg"))
{
    byte[] secret = stego.Decode(AlgorithmEnum.Lsb);
}

Right now there are 2 steganography algorithms implemented:

  • LSB (least significant bit)
  • Zhao & Koch (algorithm based on DCT)

These algorithms can be parameterized. You can pass a key parameter, which will be used as random seed to determine where to hide secret data:

stego.SetSettings(new StegoCore.Model.Settings
    {
        Key = "aaa"
    });

About

Library and Web App for hiding data in image files

Topics

Resources

Stars

Watchers

Forks

Packages

 
 
 

Languages