Skip to content

Lightweight steganography library made with love in java <3.

License

Notifications You must be signed in to change notification settings

Zentae/steganography-library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

steganography-library

Lightweight steganography library made with love in java <3.

Usage

Encode a message

// Getting the source image.
byte[] message = "Example message"
        .getBytes(StandardCharsets.UTF_8);
Encoder<Image> imageEncoder = new ImageEncoder(sourceImage);
Image encodedImage = imageEncoder.encode(message);

Decode a message

// Getting the encoded image.
Decoder<Image> imageDecoder = new ImageDecoder(encodedImage);
String decodedMessage = imageDecoder.decode(sourceImage);

About

Lightweight steganography library made with love in java <3.

Resources

License

Stars

Watchers

Forks

Languages