No description
Find a file
2020-09-06 22:51:08 +05:30
encode.c Stable working of encoding 2020-08-14 21:59:32 +05:30
home-cat.ppm Adding files 2020-08-09 23:09:42 +05:30
obj.exe Adding files 2020-08-09 23:09:42 +05:30
ppm.h Adding files 2020-08-09 23:09:42 +05:30
README.md Update README.md 2020-09-06 22:51:08 +05:30
star.ppm Adding files 2020-08-09 23:09:42 +05:30
star_ascii.ppm Adding files 2020-08-09 23:09:42 +05:30
steg Adding files 2020-08-09 23:09:42 +05:30
steg.c Stable working of encoding 2020-08-14 21:59:32 +05:30

Steganography-in-C

steg

GitHub language count GitHub code size in bytes GitHub GitHub last commit

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