Crates.io | pngchat |
lib.rs | pngchat |
version | 1.0.1 |
source | src |
created_at | 2022-05-11 08:24:09.62044 |
updated_at | 2022-05-11 13:00:58.581061 |
description | Hide messages in the PNG file |
homepage | |
repository | https://github.com/Azathoth1729/pngchat |
max_upload_size | |
id | 584514 |
size | 74,838 |
Hide messages in the PNG file.
The intent of this little project is to learn how to encode PNG file and add some messages inside it
Idea come from PNGme: An Intermediate Rust Project
Making a command line program that lets you hide secret messages in PNG files.
The main tasks of pngchat
are:
# Encodes a message into a PNG file and saves the result
pngchat encode ./test.png ruSt "This is a hidden message"
# Searches for a message hidden in a PNG file and prints the message if one is found
pngchat decode ./test.png ruSt
# Removes a chunk from a PNG file and saves the result
pngchat remove ./test.png ruSt
# Prints all of the chunks in a PNG file
pngchat print ./test.png
See the PNG file structure spec for more details about how PNG file structured
This project is licensed under the MIT license.