mirror of
https://github.com/Priyatham-sai-chand/Steganography-in-C.git
synced 2026-08-15 04:21:16 -07:00
No description
| encode.c | ||
| home-cat.ppm | ||
| obj.exe | ||
| ppm.h | ||
| README.md | ||
| star.ppm | ||
| star_ascii.ppm | ||
| steg | ||
| steg.c | ||
Steganography-in-C
Steganography is the practice of concealing messages or information within other non-secret text or data. For more info on the process, Wikipedia
This is my ongoing project to hide messages using a C project and in later stages be able to integrate it to provide a GUI for ease of operation. it currently operates on PPM files which will be later updated to JPEG.
Encrytion would require the use of openssl
To Compile
gcc steg.c encode.c -o steg
with encryption
gcc -lssl -lcrypto steg.c encode.c encryption.c -o steg
