Hide data in your images, through the art of steganography.
This program allows you to hide an arbitrary file, at bit level, inside a regular image file. The process is unnoticeable and it makes it so the file can later be extracted from a normal looking image. No one will ever suspect anything was hidden inside it!
If you want to learn how it's done, read the README :)
No followers yet
Once you ship this you can't edit the description of the project, but you'll be able to add more devlogs and re-ship it as you add new features!
Redid the commands and now the program can extract the file with the same name it was injected with.
Did some refactoring! This image (if the website doesnt do weird things/compression to it) contains inside it an encoded image of Jake from Adventure Time in JPEG format.
I made my own encoding for the file content and name, broken down into bytes. This is the data that will actually be injected into the image.
I've attached a demo with a simple text file.
I managed to read bytes from a .png file using the png Rust crate! This is exactly what I needed.