From 2193d493d12135a1d8388dbcf95a0e7e727bfed0 Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Thu, 24 Nov 2011 09:33:18 +0100 Subject: [PATCH] Updated README. --- README | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README b/README index 1d0d752..3a56e35 100644 --- a/README +++ b/README @@ -29,7 +29,10 @@ 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: - from stegano import slsb +.. code-block:: python + :linenos: + + rom stegano import slsb secret = slsb.hide("./pictures/Lenna.png", "Bonjour tout le monde") @@ -42,9 +45,9 @@ In addition you can use Stéganô as a program thanks to the scripts provided in Example: - /stegano/bin$ chmod u+x * +/stegano/bin$ chmod u+x * - /stegano/bin$ ./slsb --hide -i ../examples/pictures/Lenna.png -o Lena1.png -m "MessageBo" +/stegano/bin$ ./slsb --hide -i ../examples/pictures/Lenna.png -o Lena1.png -m "MessageBo" Turorial