Bumped version number.

This commit is contained in:
Cédric Bonhomme 2016-05-19 22:38:07 +02:00
parent e4f9a08cd7
commit eeb8132b4b
No known key found for this signature in database
GPG key ID: A1CB94DE57B7A70D
4 changed files with 10 additions and 5 deletions

View file

@ -33,7 +33,7 @@ appropriate steganography technique. For example:
.. code:: python
>>> from stegano import lsb
>>> secret = slsb.hide("./tests/sample-files/Lenna.png", "Hello World")
>>> secret = lsb.hide("./tests/sample-files/Lenna.png", "Hello World")
>>> secret.save("./Lenna-secret.png")
@ -44,7 +44,7 @@ Use Stéganô as a program
$ lsb --hide -i ./tests/sample-files/Lenna.png -o Lena1.png -m "Secret Message"
Hide the message with Sieve of Eratosthenes:
Hide the message with the Sieve of Eratosthenes:
.. code:: bash