You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creating random captcha by randomizing alphabets and numbers
Writing the captcha onto the image
Generating a unique number from captcha to decide the co-ordinates for embedding
Encrypting
Taking the message from the user.
Encryting the message using AES with a password.
Converting the binary encoded message into the string for embedding.
Embedding
Converting the message into ascii format
Storing the message inside the image pixel color(r,g,b)
As you can see there is no difference b/w the original and embedded image because we only manupilated with last few bits of the color.
For Extracting the message.
We input the embedded image
We input the captcha for Finding the co-ordinates where message is embedded
We input the Password for decrypting the extracted message
If there is any missmatch, the hidden message will not be extracted.
I will be much obliged if you would provide your valuable inputs.
Thank you.
About
Providing privacy by randomizing, embedding and encrypting message