Metadata-Version: 1.1
Name: Stegano
Version: 0.4.5
Summary: A Python Steganography module.
Home-page: https://github.com/cedricbonhomme/Stegano
Author: Cédric Bonhomme
Author-email: cedric@cedricbonhomme.org
License: GPLv3
Description: Stéganô
        =======
        
        A Python Steganography module.
        
        
        Installation
        ------------
        
        .. code:: bash
        
            $ sudo pip install Stegano
        
        
        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:
        
        .. code:: python
        
            >>> from stegano import slsb
            >>> secret = slsb.hide("./pictures/Lenna.png", "Hello Workd")
            >>> secret.save("./Lenna-secret.png")
        
        
        Use Stéganô as a program
        ------------------------
        
        In addition you can use Stéganô as a program.
        
        Example:
        
        .. code:: bash
        
            $ slsb --hide -i ../examples/pictures/Lenna.png -o Lena1.png -m "Secret Message"
        
        Another example (hide the message  with Sieve of Eratosthenes):
        
        .. code:: bash
        
            $ slsb-set --hide -i ../examples/pictures/Lenna.png -o Lena2.png --generator eratosthenes -m 'Secret Message'
        
        
        Examples
        --------
        
        There are some examples in the folder *examples*.
        
        .. code:: bash
        
            $ git clone https://github.com/cedricbonhomme/Stegano.git
            $ cd stegano/examples
        
        
        Turorial
        --------
        
        A `tutorial <https://stegano.readthedocs.org>`_ is available.
        
        
        Contact
        -------
        
        `My home page <https://www.cedricbonhomme.org>`_.
        
        
        Release History
        ===============
        
        0.4.5 (2015-12-23)
        ------------------
        
        * bugfix.
        
        0.4.4 (2015-12-23)
        ------------------
        
        * new project home page;
        * minor updated to the documentation.
        
        
        0.4.3 (2015-10-06)
        ------------------
        
        * bug fixes for Python 3;
        * bug fixes in the scripts in *./bin*.
        
        0.4.2 (2015-10-05)
        ------------------
        
        * first stable release on PypI.
        
        0.4 (2012-01-02)
        ----------------
        
        This release introduces a more advanced LSB (Least Significant Bit) method
        based on integers sets. The sets generated with Python generators
        (Sieve of Eratosthenes, Fermat, Carmichael numbers, etc.) are used to select
        the pixels used to hide the information. You can use these new methods in your
        Python codes as a Python module or as a program in your scripts.
        
        0.3 (2011-04-15)
        ----------------
        
        * you can now use Stéganô as a library in your Python program
        (python setup.py install) or as a 'program' thanks to the scripts provided
        in the bin directory;
        * new documentation (reStructuredText) comes with Stéganô.
        
        0.2 (2011-03-24)
        ----------------
        
        * this release introduces some bugfixes and a major speed improvement of the
        *reveal* function for the LSB method. Moreover it is now possible to hide a
        binary file (ogg, executable, etc.);
        * a new technique for hiding/revealing a message in a JPEG picture by using the
        description field of the image is provided.
        
Platform: Linux
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Topic :: Utilities
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
