Updated README.

This commit is contained in:
Cédric Bonhomme 2012-12-14 11:52:15 +01:00
parent a22605f5fe
commit dabbf2a727

10
README
View file

@ -1,11 +1,7 @@
.. -*-restructuredtext-*-
=======
Stéganô Stéganô
======= =======
:author: Cédric Bonhomme #### A Python Steganography module.
:contact: http://cedricbonhomme.org/
Installation Installation
@ -20,11 +16,8 @@ Use Stéganô as a library in your Python program
If you want to use Stéganô in your Python program you just have to import the appropriate steganography technique. For example: If you want to use Stéganô in your Python program you just have to import the appropriate steganography technique. For example:
from stegano import slsb from stegano import slsb
secret = slsb.hide("./pictures/Lenna.png", "Bonjour tout le monde") secret = slsb.hide("./pictures/Lenna.png", "Bonjour tout le monde")
secret.save("./Lenna-secret.png") secret.save("./Lenna-secret.png")
@ -36,7 +29,6 @@ In addition you can use Stéganô as a program.
Example: Example:
~/stegano/$ sudo python setup.py install ~/stegano/$ sudo python setup.py install
~/$ slsb --hide -i ../examples/pictures/Lenna.png -o Lena1.png -m "MessageBo" ~/$ slsb --hide -i ../examples/pictures/Lenna.png -o Lena1.png -m "MessageBo"