STEGNATOGRAPHY:

 

***this is only for educational purpose .  I am not responsible for any of the misuse ***** 

STEGNATOGRAPHY IS  A PROCESS OF HIDING MESSAGES INSIDE AN IMAGE AND TANSFERRING TO  OUR  CIRCLES TO ENSURE THE SECRET OF THE MESSAGE .


with python , its a piece of cake to begin...

In python there is an avalability of the module "stepic" 

Install it by the cmmnd   for  linux users :   sudo apt-get install stepic

inorder to hide the message  , you need an image file .

then create a module called encrypt.py


import Image, stepic
ob1=Image.open("<image name>")
ob1.show()
ob2=stepic.encode(ob1,'<hidden message>')
ob2.save('<new image name>','<format like  :  PNG , JPEG>')
ob2.show()



there it is . its all done 



now you will see images (not here , there) could you find out the difference between them .

stepic hides the message in to an image by adusting the colour.




inorder to decrypt:


import Image, stepic
ob1=Image.open("new_img.png")
s=stepic.decode(ob1)
data=s.decode()
print data


its all done. 


but its easy to break.............



Comments

Popular posts from this blog

What is the best way to learn Programming ?

Top 10 commands important for LINUX Newbies