{ "info": { "author": "C\u00e9dric Bonhomme", "author_email": "cedric@cedricbonhomme.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Operating System :: OS Independent", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Security" ], "description": "Stegano\n=======\n\n.. image:: https://img.shields.io/pypi/pyversions/Stegano.svg?style=flat-square\n :target: https://pypi.python.org/pypi/Stegano\n\n.. image:: https://img.shields.io/pypi/v/Stegano.svg?style=flat-square\n :target: https://github.com/cedricbonhomme/Stegano/releases/latest\n\n.. image:: https://img.shields.io/pypi/l/Stegano.svg?style=flat-square\n :target: https://www.gnu.org/licenses/gpl-3.0.html\n\n.. image:: https://img.shields.io/travis/cedricbonhomme/Stegano/master.svg?style=flat-square\n :target: https://travis-ci.org/cedricbonhomme/Stegano\n\n.. image:: https://img.shields.io/coveralls/cedricbonhomme/Stegano/master.svg?style=flat-square\n :target: https://coveralls.io/github/cedricbonhomme/Stegano?branch=master\n\n.. image:: https://img.shields.io/github/stars/cedricbonhomme/Stegano.svg?style=flat-square\n :target: https://github.com/cedricbonhomme/Stegano/stargazers\n\n.. image:: https://img.shields.io/badge/SayThanks.io-%E2%98%BC-1EAEDB.svg?style=flat-square\n :target: https://saythanks.io/to/cedricbonhomme\n\n\n`Stegano `_, a pure Python\nSteganography module.\n\nSteganography is the art and science of writing hidden messages in such a way\nthat no one, apart from the sender and intended recipient, suspects the\nexistence of the message, a form of security through obscurity. Consequently,\nfunctions provided by Stegano only hide messages, without encryption.\nSteganography is often used with cryptography.\n\nInstallation\n------------\n\n.. code:: bash\n\n $ pipenv install Stegano\n \u2728\ud83d\udc0d\u2728\n\nYou will be able to use Stegano in your Python programs.\n\nIf you only want to install Stegano as a command line tool:\n\n.. code:: bash\n\n $ pipx install Stegano\n \u2728\ud83c\udf70\u2728\n\npipx installs scripts (system wide available) provided by Python packages into\nseparate virtualenvs to shield them from your system and each other.\n\n\nUsage\n-----\n\nA `tutorial `_ is available.\n\n\nUse Stegano as a library in your Python program\n'''''''''''''''''''''''''''''''''''''''''''''''\n\nIf you want to use Stegano in your Python program you just have to import the\nappropriate steganography technique. For example:\n\n.. code:: python\n\n >>> from stegano import lsb\n >>> secret = lsb.hide(\"./tests/sample-files/Lenna.png\", \"Hello World\")\n >>> secret.save(\"./Lenna-secret.png\")\n >>>\n >>> clear_message = lsb.reveal(\"./Lenna-secret.png\")\n\n\nUse Stegano as a command line tool\n''''''''''''''''''''''''''''''''''\n\nHide and reveal a message\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\n.. code:: bash\n\n $ stegano-lsb hide -i ./tests/sample-files/Lenna.png -m \"Secret Message\" -o Lena1.png\n $ stegano-lsb reveal -i Lena1.png\n Secret Message\n\n\nHide the message with the Sieve of Eratosthenes\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n.. code:: bash\n\n $ stegano-lsb-set hide -i ./tests/sample-files/Lenna.png -m 'Secret Message' --generator eratosthenes -o Lena2.png\n\nThe message will be scattered in the picture, following a set described by the\nSieve of Eratosthenes. Other sets are available. You can also use your own\ngenerators.\n\nThis will make a steganalysis more complicated.\n\n\nRunning the tests\n-----------------\n\n.. code:: bash\n\n $ python -m unittest discover -v\n\nRunning the static type checker:\n\n.. code:: bash\n\n $ python tools/run_mypy.py\n\n\nContributions\n-------------\n\nContributions are welcome. If you want to contribute to Stegano I highly\nrecommend you to install it in a Python virtual environment with pipenv.\n\n\nLicense\n-------\n\nThis software is licensed under\n`GNU General Public License version 3 `_\n\nCopyright (C) 2010-2019 `C\u00e9dric Bonhomme `_\n\nFor more information, `the list of authors and contributors `_ is available.\n\n|\n\nRelease History\n===============\n\n0.9.4 (2019-06-05)\n------------------\n\n* new: Implemented LFSR generator (with tests and CLI)\n (`PR #27 `_)\n* new: Implemented Ackermann generators CLI interface\n (`PR #26 `_)\n* new: The Ackermann functions are not actual generators\n (`#24 `_)\n* new: add a shift parameter for the lsbmodule\n (`#25 `_)\n* fix: lsbset.hide cause .png transparent area lost\n (`#23 `_)\n\n\n0.9.3 (2019-04-10)\n------------------\n\n* it is now possible to either pass the location of an image or directly pass\n an already opened Image.Image to the hide and reveal methods;\n* code re-formatted a bit with black.\n\n\n0.9.2 (2019-04-04)\n------------------\n\n* updated Pillow dependency to version 6.0.0 in order to fix a bug when opening\n some PNG files (https://github.com/python-pillow/Pillow/issues/3557).\n\n \n0.9.1 (2019-03-06)\n------------------\n\n* updated Pillow dependency in order to fix a bug when opening some PNG files.\n\n\n0.9.0 (2018-12-18)\n------------------\n\n* added the possibility to shift the encoded bits when using the lsbset module.\n\n\n0.8.6 (2018-11-05)\n------------------\n\n* fixed a potential security issue related to CVE-2018-18074.\n\n\n0.8.5 (2018-04-18)\n------------------\n\n* Fixed an encoding problem which occured on Windows during the installation\n of the module.\n\n\n0.8.4 (2018-02-28)\n------------------\n\n* Stegano is ready for use with pipenv and pipsi.\n\n\n0.8.3 (2018-02-23)\n------------------\n\n* the recommended way to install Stegano is now to use pipenv.\n\n\n0.8.2 (2017-12-20)\n------------------\n\n* Fixed a bug with the new 'encoding' function when using Stegano as a command\n line tool. No default value was set. Default value is UTF-8.\n\n\n0.8.1 (2017-05-16)\n------------------\n\n* it is now possible to specify the encoding (UTF-8 or UTF-32LE) of the message\n to hide/reveal through the command line;\n* the help of the command line now displays the available choices for the\n arguments, if it is necessary (list of available encodings, list of available\n generators);\n* tests expected results lies now in a dedicated folder;\n* a script has been added in order to get proper exit code check for mypy.\n\n\n0.8 (2017-05-06)\n----------------\n\n* updated command line. All commands are now prefixed with *stegano-*;\n* improved type hints;\n* it is possible to load and save images from and to file objects (BytesIO);\n* improved checks when revealing a message with the lsbset module fails.\n\n\n0.7.1 (2017-05-05)\n------------------\n\n* improved generators for the lsb-set module;\n* improved tests for the generators;\n* improved type hints.\n\n\n0.7 (2017-05-04)\n----------------\n\n* unicode is now supported. By default UTF-8 encoding is used. UTF-32LE can also\n be used to hide non-ASCII characters. UTF-8 (8 bits) is the default choice\n since it is possible to hide longer messages with it.\n* improved checks with type hints.\n\n\n0.6.9 (2017-03-10)\n------------------\n\n* introduces some type hints (PEP 484);\n* more tests for the generators and for the tools module;\n* updated descriptions of generators;\n* fixed a bug with a generator that has been previously renamed.\n\n\n0.6.8 (2017-03-08)\n------------------\n\n* bugfix: fixed #12: Error when revealing a hidden binary file in an image.\n\n\n0.6.7 (2017-02-21)\n------------------\n\n* bugfix: added missing dependency in the setup.py file.\n\n\n0.6.6 (2017-02-20)\n------------------\n\n* improved docstrings for the desciption of the generators;\n* improved the command which displays the list of generators.\n\n\n0.6.5 (2017-02-16)\n------------------\n\n* added a command to list all available generators for the lsb-set module;\n* test when the data image is coming via byte stream, for the lsb module.\n\n\n0.6.4 (2017-02-06)\n------------------\n\n* a command line for the 'red' module has been added;\n* bugfix: fixed a bug in the lsb-set command line when the generator wasn't\n specified by the user.\n\n\n0.6.3 (2017-01-29)\n------------------\n\n* Support for transparent PNG images has been added (lsb and lsbset modules).\n\n\n0.6.2 (2017-01-19)\n------------------\n\n* bugfix: solved a bug when the image data is coming via byte streams (ByteIO),\n for the exifHeader hiding method.\n\n\n0.6.1 (2016-08-25)\n------------------\n\n* reorganization of the steganalysis sub-module.\n\n\n0.6 (2016-08-04)\n------------------\n\n* improvements of the command line of St\u00e9gan\u00f4. The use of St\u00e9gan\u00f4 through the\n command line has slightly changed ('hide' and 'reveal' are now sub-parameters\n of the command line). No changes if you use St\u00e9gan\u00f4 as a module in your\n software. The documentation has been updated accordingly.\n\n\n0.5.5 (2016-08-03)\n------------------\n\n* bugfix: Incorrect padding size in `base642string` in tools.base642binary().\n\n\n0.5.4 (2016-05-22)\n------------------\n\n* the generator provided to the functions lsbset.hide() and lsbset.reveal() is\n now a function. This is more convenient for a user who wants to use a custom\n generator (not in the module lsbset.generators).\n* performance improvements for the lsb and lsbset modules.\n\n\n0.5.3 (2016-05-19)\n------------------\n\n* reorganization of all modules. No impact for the users of Stegano.\n\n\n0.5.2 (2016-05-18)\n------------------\n\n* improvements and bug fixes for the exifHeader module;\n* added unit tests for the exifHeader module;\n* improvements of the documentation.\n\n\n0.5.1 (2016-04-16)\n------------------\n\n* minor improvements and bug fixes;\n* added unit tests for the slsb and slsbset modules.\n\n\n0.5 (2016-03-18)\n----------------\n\n* management of greyscale images.\n\n\n0.4.6 (2016-03-12)\n------------------\n\n* bugfix when the length of the message to hide is not divisible by 3,\n for the slsb and slsbset module.\n\n\n0.4.5 (2015-12-23)\n------------------\n* bugfix.\n\n\n0.4.4 (2015-12-23)\n------------------\n\n* new project home page;\n* minor updated to the documentation.\n\n\n0.4.3 (2015-10-06)\n------------------\n\n* bug fixes for Python 3;\n* bug fixes in the scripts in *./bin*.\n\n\n0.4.2 (2015-10-05)\n------------------\n\n* first stable release on PypI.\n\n\n0.4 (2012-01-02)\n----------------\n\nThis release introduces a more advanced LSB (Least Significant Bit) method\nbased on integers sets. The sets generated with Python generators\n(Sieve of Eratosthenes, Fermat, Carmichael numbers, etc.) are used to select\nthe pixels used to hide the information. You can use these new methods in your\nPython codes as a Python module or as a program in your scripts.\n\n\n0.3 (2011-04-15)\n----------------\n\n* you can now use St\u00e9gan\u00f4 as a library in your Python program;\n (python setup.py install) or as a 'program' thanks to the scripts provided\n in the bin directory;\n* new documentation (reStructuredText) comes with St\u00e9gan\u00f4.\n\n\n0.2 (2011-03-24)\n----------------\n\n* this release introduces some bugfixes and a major speed improvement of the\n *reveal* function for the LSB method. Moreover it is now possible to hide a\n binary file (ogg, executable, etc.);\n* a new technique for hiding/revealing a message in a JPEG picture by using the\n description field of the image is provided.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/cedricbonhomme/Stegano", "keywords": "", "license": "GPLv3", "maintainer": "", "maintainer_email": "", "name": "Stegano", "package_url": "https://pypi.org/project/Stegano/", "platform": "Linux", "project_url": "https://pypi.org/project/Stegano/", "project_urls": { "Homepage": "https://github.com/cedricbonhomme/Stegano" }, "release_url": "https://pypi.org/project/Stegano/0.9.4/", "requires_dist": null, "requires_python": "", "summary": "A pure Python Steganography module.", "version": "0.9.4" }, "last_serial": 5359921, "releases": { "0.4": [ { "comment_text": "", "digests": { "md5": "32007b3fd06605340b612a01d695bf4f", "sha256": "32d779515e448e011a2d2866efa179bd05279ad9889c222f1eeac5e0d255cca6" }, "downloads": -1, "filename": "Stegano-0.4-py2.7.egg", "has_sig": true, "md5_digest": "32007b3fd06605340b612a01d695bf4f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 26904, "upload_time": "2015-10-04T20:35:00", "url": "https://files.pythonhosted.org/packages/2e/61/d09561fc183bd1b1fd2607dbdb21e4db925777991301d81b47807159a58f/Stegano-0.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d800d818af7ab8faa8086a84e3b83289", "sha256": "614c4a6e1da35d4d2a443695f8339e7838a03897344231ac784a151ba5f0d76b" }, "downloads": -1, "filename": "Stegano-0.4-py3.4.egg", "has_sig": true, "md5_digest": "d800d818af7ab8faa8086a84e3b83289", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 29233, "upload_time": "2015-10-04T20:13:55", "url": "https://files.pythonhosted.org/packages/50/2f/b26eef33f77a0ade1664388d32e425236fa55aef02734c8811ab707a243e/Stegano-0.4-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "00326bf88023becfa53a10ae652ca34a", "sha256": "34dc3f78d661b7ddd508a1c93f11c372bb573747a800e535df16f67cc04c1508" }, "downloads": -1, "filename": "Stegano-0.4.tar.gz", "has_sig": true, "md5_digest": "00326bf88023becfa53a10ae652ca34a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7592, "upload_time": "2015-10-04T20:15:37", "url": "https://files.pythonhosted.org/packages/d6/9a/0c05cd54afd13e3078744f24bddd675f8c18bdf06a03366860b489c7a189/Stegano-0.4.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "7271bdbcad52faa154335703f1b07f0c", "sha256": "b1811aaf414715ac31701b840760c1367e2a61c1daa6a5bd9f7b1ef554995735" }, "downloads": -1, "filename": "Stegano-0.4.1-py2.7.egg", "has_sig": true, "md5_digest": "7271bdbcad52faa154335703f1b07f0c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 43471, "upload_time": "2015-10-05T06:50:47", "url": "https://files.pythonhosted.org/packages/b3/6f/4b73cb2d83ebf40723b703dcdc6ce3944e174d8e8be8be1b652bf2a3a703/Stegano-0.4.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "048d44f9b91231760c8634d90486eb59", "sha256": "bab3249e209791e61a6eda04f6a5b6819aaa31ac2541c211eda04ef47c64eb1c" }, "downloads": -1, "filename": "Stegano-0.4.1-py3.4.egg", "has_sig": true, "md5_digest": "048d44f9b91231760c8634d90486eb59", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 46277, "upload_time": "2015-10-05T06:48:26", "url": "https://files.pythonhosted.org/packages/da/d8/3bbb27fcfe5ebe3c47d12c1741d109725194a0fa1d78cf3efd0eaa899b38/Stegano-0.4.1-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "17b83b76d1812c717ac61b17d19765fc", "sha256": "c225d6eabcb7af8e2792b6cd4f3c041f803f1905930a0ec5dd507b34ded4c73e" }, "downloads": -1, "filename": "Stegano-0.4.1.tar.gz", "has_sig": true, "md5_digest": "17b83b76d1812c717ac61b17d19765fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26702, "upload_time": "2015-10-05T06:49:04", "url": "https://files.pythonhosted.org/packages/c6/13/96bde406f7e9c6363986ebf6b78d1482ecce29a79eb3ebbb94419de496b9/Stegano-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "6c9777200d11281668ad39ecd86d9b97", "sha256": "f5c916cd64bbcd833431b4143fefe6aa4b23e1fe810f1e6a6a367618a66d1853" }, "downloads": -1, "filename": "Stegano-0.4.2-py2.7.egg", "has_sig": true, "md5_digest": "6c9777200d11281668ad39ecd86d9b97", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 47445, "upload_time": "2015-10-05T06:57:11", "url": "https://files.pythonhosted.org/packages/81/4e/033d76a04c51aed3e4f72d43f3ccd4dedcc1f8c6f211964bd15240d073fe/Stegano-0.4.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "152ed00c948ec6cd425a34855a22ce84", "sha256": "052d53856c973d4f93efd121ea695c0d582fefbcc3a4cb763e3563d77d95937f" }, "downloads": -1, "filename": "Stegano-0.4.2-py3.4.egg", "has_sig": true, "md5_digest": "152ed00c948ec6cd425a34855a22ce84", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 50251, "upload_time": "2015-10-05T06:56:56", "url": "https://files.pythonhosted.org/packages/ad/b7/04d01c163faee37fe4ef6d52b1312862f81ed1a903913036b7e60d22d7e3/Stegano-0.4.2-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "eeabfb24f95dc15b387377ce79afcf48", "sha256": "399085e4bd3bd703337363f84a87daf1bb9900dbe375b72435011b4c4476774b" }, "downloads": -1, "filename": "Stegano-0.4.2.tar.gz", "has_sig": true, "md5_digest": "eeabfb24f95dc15b387377ce79afcf48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7765534, "upload_time": "2015-10-05T06:56:39", "url": "https://files.pythonhosted.org/packages/58/2d/384909f090bd6b1f815b0ecadfd8ee49dba424c4ee9cadccc9fa1573e3ea/Stegano-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "95d5f6e7d407387a496871d7563c89ce", "sha256": "104790cce2494de7ebbb150d617ad0352eaa3ef0dd2ce4443e95229f89dfbc0d" }, "downloads": -1, "filename": "Stegano-0.4.3-py2.7.egg", "has_sig": true, "md5_digest": "95d5f6e7d407387a496871d7563c89ce", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 47621, "upload_time": "2015-10-06T06:06:59", "url": "https://files.pythonhosted.org/packages/b7/52/a7cdaf8925d300395c8d3ec6341952b240c7f946a2cf1f14333d3d2bf181/Stegano-0.4.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "82f898ec048b4db5f48322b9fb54bb71", "sha256": "87407af10eaed85a086aa5c7491c39ced1ef2c23fe3c4cc57ca9960c20e6cc2f" }, "downloads": -1, "filename": "Stegano-0.4.3-py3.4.egg", "has_sig": true, "md5_digest": "82f898ec048b4db5f48322b9fb54bb71", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 50448, "upload_time": "2015-10-06T06:06:10", "url": "https://files.pythonhosted.org/packages/c8/42/02b7e1c1a27772fa9f097aa1e60d4b46f7672c11563fd70ba2c4ed2a04e5/Stegano-0.4.3-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "87c2dd854f6fb7812efb6700fc06aba3", "sha256": "31ca502258be039c883ef675ab3d49590c1e7e9a48d337f92d2ba66afc2eabba" }, "downloads": -1, "filename": "Stegano-0.4.3.tar.gz", "has_sig": true, "md5_digest": "87c2dd854f6fb7812efb6700fc06aba3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34866, "upload_time": "2015-10-06T06:05:32", "url": "https://files.pythonhosted.org/packages/68/fe/407899320a734f52bdcf56ed9b408b912927f64740c21c5ff10d69234342/Stegano-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "built for Linux-4.2.0-22-generic-x86_64-with-glibc2.4", "digests": { "md5": "0316570c366562feeaf0a5d8fca7ce81", "sha256": "46f1c310637347f10ba52e85e5d10bc1eef79d211a09c1f41f0df8e86d270259" }, "downloads": -1, "filename": "Stegano-0.4.4.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "0316570c366562feeaf0a5d8fca7ce81", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 29221, "upload_time": "2015-12-23T20:52:54", "url": "https://files.pythonhosted.org/packages/13/ea/7c56e7f16c9a7d659483b926ab90910956a38556ee1782603dd752499ed2/Stegano-0.4.4.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "02c0e0ed367c4f496ee51b3f847cdbc5", "sha256": "2b5d2a740171c076ac4661c14139cc32592470b7b06a972557c16e027e8bb232" }, "downloads": -1, "filename": "Stegano-0.4.4-py2.7.egg", "has_sig": false, "md5_digest": "02c0e0ed367c4f496ee51b3f847cdbc5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 48123, "upload_time": "2015-12-23T21:14:36", "url": "https://files.pythonhosted.org/packages/dd/df/e67a10da5e35bbdcdfb777c4af1a37462a028243d434068903fe1c9c99cc/Stegano-0.4.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "05be542840d9ee71b7c3627b0f8a8a95", "sha256": "c9737ec3a391910b5b551a4ece160ceb299263651c0cebb7b66f9118c34979e0" }, "downloads": -1, "filename": "Stegano-0.4.4-py2-none-any.whl", "has_sig": false, "md5_digest": "05be542840d9ee71b7c3627b0f8a8a95", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 75437, "upload_time": "2015-12-23T20:59:12", "url": "https://files.pythonhosted.org/packages/e9/4c/4a9e9071efa609e9fd99f55ee7befe22516ab69d773df7f4b8a39809b649/Stegano-0.4.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ccc0289ddeeacee6e01c5b9bf728166e", "sha256": "8b05ebc3baeea6877b654c5f3331711aaa240e4c706b2bfd76905d751e2d83c6" }, "downloads": -1, "filename": "Stegano-0.4.4-py3.4.egg", "has_sig": false, "md5_digest": "ccc0289ddeeacee6e01c5b9bf728166e", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 50954, "upload_time": "2015-12-23T21:14:00", "url": "https://files.pythonhosted.org/packages/5d/a6/40af4151191b796a80f09a0affa4dbbbde4e141308bee83a52918329bf7a/Stegano-0.4.4-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "48aa5b600cba13dafffc951f5bde1fa1", "sha256": "8d18f332b59a35b3761774d8ba3b2a1a703135ea3ce7cf666b271a18f9f46aec" }, "downloads": -1, "filename": "Stegano-0.4.4.tar.gz", "has_sig": false, "md5_digest": "48aa5b600cba13dafffc951f5bde1fa1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35713, "upload_time": "2015-12-23T20:52:35", "url": "https://files.pythonhosted.org/packages/10/74/b9bc18e022b8234481019fc5f603b43d350f4c070aeb9edfff9ba2362ad5/Stegano-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "202acea7fa438d5d177287c31a71f503", "sha256": "41ec390dd03e9377c15da66fa91e05409028b4af7d5174128199b6ec52e23f04" }, "downloads": -1, "filename": "Stegano-0.4.5-py2.7.egg", "has_sig": false, "md5_digest": "202acea7fa438d5d177287c31a71f503", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 48141, "upload_time": "2015-12-23T21:23:20", "url": "https://files.pythonhosted.org/packages/b8/43/d2323382cb88c2b3e6cdba20dbaeaf053f5be8c5b763dd3468ef3d3055e7/Stegano-0.4.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b0c9c2858272b544a681f8624f398849", "sha256": "1a4b926f488859b381504330033dc75c0e403e9702aba03ceeeda15cfd4ff046" }, "downloads": -1, "filename": "Stegano-0.4.5-py3.4.egg", "has_sig": false, "md5_digest": "b0c9c2858272b544a681f8624f398849", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 50972, "upload_time": "2015-12-23T21:23:32", "url": "https://files.pythonhosted.org/packages/d7/1d/4d5d5b8b58378c86134b43e793696978f56a79b61d3f04378464e9d0ea7f/Stegano-0.4.5-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "ec63f7928c84614e18889cfdf7e8a38a", "sha256": "be85065797221f7661cfec6c1fe95819c6c1dfec70ac7c4c75ea33ad3acfb753" }, "downloads": -1, "filename": "Stegano-0.4.5.tar.gz", "has_sig": false, "md5_digest": "ec63f7928c84614e18889cfdf7e8a38a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35884, "upload_time": "2015-12-23T21:23:49", "url": "https://files.pythonhosted.org/packages/88/cf/697277832c61a6bd48affa13d306fcded81410a6fe3860929d686a9c5118/Stegano-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "1d6626f29d01e922a3afe5e6489ffe41", "sha256": "2e1d9961d592f64484c0f920b1a7360b89ad7152ee0c4414279a60194dc34af9" }, "downloads": -1, "filename": "Stegano-0.4.6-py2.7.egg", "has_sig": false, "md5_digest": "1d6626f29d01e922a3afe5e6489ffe41", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 48342, "upload_time": "2016-03-12T22:59:52", "url": "https://files.pythonhosted.org/packages/ab/46/eb1a611e8c547ab5f27159999f4eb034720f77f1a311bdd8ba4ca78c8dee/Stegano-0.4.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "042a80194b511e0be0af57f6968fe1b7", "sha256": "7458fac87af8ae40bda42846537bf1b355e2e1079d562a8342d40f1e7b2763d4" }, "downloads": -1, "filename": "Stegano-0.4.6-py3.5.egg", "has_sig": false, "md5_digest": "042a80194b511e0be0af57f6968fe1b7", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 51034, "upload_time": "2016-03-12T22:59:34", "url": "https://files.pythonhosted.org/packages/1c/df/bfee95b98ee0c009af4c04677811e5ffa4cee24578193c4bdfc291359e0b/Stegano-0.4.6-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "82443701a6f43fe4b2d6e381fc44a178", "sha256": "00d03daf846493efeb9fda18897b6a6eba5733d426bb9f5c6812252fc017cf4d" }, "downloads": -1, "filename": "Stegano-0.4.6.tar.gz", "has_sig": false, "md5_digest": "82443701a6f43fe4b2d6e381fc44a178", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36071, "upload_time": "2016-03-12T22:59:14", "url": "https://files.pythonhosted.org/packages/31/a0/7f708fc931688119777c261b0dd5d875fd932ee57f0e3025057b5c3a8651/Stegano-0.4.6.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "b26263f5badd02d819855edfcc8dcf5b", "sha256": "b66508962335943ebea4564f4b63f43486ea331592fff335abc0453195556cfa" }, "downloads": -1, "filename": "Stegano-0.5.tar.gz", "has_sig": false, "md5_digest": "b26263f5badd02d819855edfcc8dcf5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36358, "upload_time": "2016-03-18T06:16:50", "url": "https://files.pythonhosted.org/packages/97/b5/d160b17e139c962433df6970a14c7a67af66fe25539d1e13ed5816905daa/Stegano-0.5.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "75a21f0c19d22c5497248680d9ee750d", "sha256": "19870f8f373f6c3e2a3fa8a851b16101e57fb3369ae84f8d99559700069bbfb8" }, "downloads": -1, "filename": "Stegano-0.5.1.tar.gz", "has_sig": false, "md5_digest": "75a21f0c19d22c5497248680d9ee750d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36732, "upload_time": "2016-04-16T12:16:37", "url": "https://files.pythonhosted.org/packages/7b/00/2b9ccb479db5e3b2d4dcd355dee46b87adc7510ad3a796f0d63dc5fe922e/Stegano-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "f6a91557b276fcedb3d89d4b7496cc7a", "sha256": "537c0afc094741f3a0ccee55586571da3fbad843590dcfeb2da838d4c69e39fa" }, "downloads": -1, "filename": "Stegano-0.5.2.tar.gz", "has_sig": false, "md5_digest": "f6a91557b276fcedb3d89d4b7496cc7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 348530, "upload_time": "2016-05-18T07:25:11", "url": "https://files.pythonhosted.org/packages/f8/60/2fa9307199036299b7eef121415213215c86f8da65ea34a747e21d8cb338/Stegano-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "694126f3d9accc33d148eee50bdd841d", "sha256": "0f3612fa35c6b33d7839e388fae864f733c898d1c8b172089dd572216abbfe7b" }, "downloads": -1, "filename": "Stegano-0.5.3.tar.gz", "has_sig": false, "md5_digest": "694126f3d9accc33d148eee50bdd841d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 187629, "upload_time": "2016-05-19T20:44:05", "url": "https://files.pythonhosted.org/packages/ce/60/c7e4ce5e959d581aed57fb2b3ce365d40c52a5fc5a8b2c69782c52025306/Stegano-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "142391244f6506222f38cc25cd554670", "sha256": "434a055b84822c0a65beb2d68e61c5bc2f4f46d54d32a42e8d2f2b05881278fe" }, "downloads": -1, "filename": "Stegano-0.5.4.tar.gz", "has_sig": false, "md5_digest": "142391244f6506222f38cc25cd554670", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188380, "upload_time": "2016-05-22T13:40:20", "url": "https://files.pythonhosted.org/packages/15/98/f2fa3786094f9e1e1c5acf3a88a8e75c01f8063cb37a7412df671b77542a/Stegano-0.5.4.tar.gz" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "789a65545fc994491447aeabcd9225a5", "sha256": "50bdb927c2299f296ab5ce1305a53a1b00d5ebec71ebacfaa62924217e3bd8ee" }, "downloads": -1, "filename": "Stegano-0.5.5.tar.gz", "has_sig": false, "md5_digest": "789a65545fc994491447aeabcd9225a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199353, "upload_time": "2016-08-03T21:08:08", "url": "https://files.pythonhosted.org/packages/8d/35/39971dbf3a2fc544943987ce8b92c7f8212cd87e874e6c94355857b9521d/Stegano-0.5.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "730a6622c23c4c57e71bef8474131dd9", "sha256": "9a8665feb3302b83ca81779004bb156ed88cfce5431300dab12948aa44dafd67" }, "downloads": -1, "filename": "Stegano-0.6.tar.gz", "has_sig": false, "md5_digest": "730a6622c23c4c57e71bef8474131dd9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 236652, "upload_time": "2016-08-04T20:09:34", "url": "https://files.pythonhosted.org/packages/8f/cf/0ba50fa43ba3582e02babcfb851331de6132c669832960f74968fe3d56f9/Stegano-0.6.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "992bdb41364ae5e89c0a32f271cb89d8", "sha256": "98b63868e05c18f0f83c1a287648435ee514480d3ea87d1fad7d5550af9f6061" }, "downloads": -1, "filename": "Stegano-0.6.1.tar.gz", "has_sig": false, "md5_digest": "992bdb41364ae5e89c0a32f271cb89d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 350819, "upload_time": "2016-08-25T06:36:55", "url": "https://files.pythonhosted.org/packages/f4/36/d5082e363f676829fcc22acd104480889c02cbeab60626e15b342d712499/Stegano-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "f9276d878597c3cb3937aa4109864cb8", "sha256": "e1cb9e096e04edd91fa0d6125eb3416aa738dd0fa3ff30f402f734f289989fb7" }, "downloads": -1, "filename": "Stegano-0.6.2.tar.gz", "has_sig": false, "md5_digest": "f9276d878597c3cb3937aa4109864cb8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32825, "upload_time": "2017-01-19T06:17:31", "url": "https://files.pythonhosted.org/packages/71/e1/2e191c2a184fc0881a140ea64b297c6236b6eed118ddacea36f4b530cf8c/Stegano-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "1117b7730b5b3af916d44ff1e5ebf527", "sha256": "2fd2727fb909de599583adffd1ad3ef01fc4d4c8a895fcaafd40e0f381bd8924" }, "downloads": -1, "filename": "Stegano-0.6.3.tar.gz", "has_sig": false, "md5_digest": "1117b7730b5b3af916d44ff1e5ebf527", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 237642, "upload_time": "2017-01-29T20:28:09", "url": "https://files.pythonhosted.org/packages/8b/28/20216d16869d451b1a75ea580ce8d7f40d7c9c070d6b77b02571ccf65809/Stegano-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "5e6aa3ec4f07f02a275cd97e5a009af6", "sha256": "ba659efc4e08866443275d66871daeba80ca91d464a0f591d5a2b3fafaa55564" }, "downloads": -1, "filename": "Stegano-0.6.4.tar.gz", "has_sig": false, "md5_digest": "5e6aa3ec4f07f02a275cd97e5a009af6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33646, "upload_time": "2017-02-06T08:37:27", "url": "https://files.pythonhosted.org/packages/a1/65/519cd3ee974421f01852ff0fd7b30e8783587208eb54c5d2dd3a90974852/Stegano-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "a2b9e7a285aee8626608d5f766f9a95d", "sha256": "8fe69848b63eeee7991cb7bbf89e27dac4c52ce9d75736f24bed22c763e60859" }, "downloads": -1, "filename": "Stegano-0.6.5.tar.gz", "has_sig": false, "md5_digest": "a2b9e7a285aee8626608d5f766f9a95d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33675, "upload_time": "2017-02-16T09:20:22", "url": "https://files.pythonhosted.org/packages/0b/7d/204d0c81545ca2c7d8d41444c35fb0c20a96b83e44fdeae2ced032433ba6/Stegano-0.6.5.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "e51f3bf286e099da16076f271edb6f2f", "sha256": "e8211992406f34a9572cced0c0470e89840ba66086fc699b7bd7d6e72a93b5a1" }, "downloads": -1, "filename": "Stegano-0.6.6.tar.gz", "has_sig": false, "md5_digest": "e51f3bf286e099da16076f271edb6f2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33942, "upload_time": "2017-02-20T13:34:43", "url": "https://files.pythonhosted.org/packages/ad/79/9b0af328e35659305c706cfd9eff5f6887b0fab59b6bdbdadb412565dcf7/Stegano-0.6.6.tar.gz" } ], "0.6.7": [ { "comment_text": "", "digests": { "md5": "7a901d378ff4ee1d853efe187f4396fa", "sha256": "84c87e64a1c785862e8c0fe296e87586c8517b4c0656f076c29b2a378389d6ac" }, "downloads": -1, "filename": "Stegano-0.6.7.tar.gz", "has_sig": false, "md5_digest": "7a901d378ff4ee1d853efe187f4396fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34027, "upload_time": "2017-02-21T06:43:27", "url": "https://files.pythonhosted.org/packages/7e/c3/ceb4717b2875582749423c1d739df9274924d5d8d3bbcb2efc612ccf0cb6/Stegano-0.6.7.tar.gz" } ], "0.6.8": [ { "comment_text": "", "digests": { "md5": "2814bf677f94af6c6311acef99d05ca4", "sha256": "5f22d52cfe0d17667874d386a04bc70cb29a12ff307f14c20fbd4599df1e1562" }, "downloads": -1, "filename": "Stegano-0.6.8.tar.gz", "has_sig": false, "md5_digest": "2814bf677f94af6c6311acef99d05ca4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 240899, "upload_time": "2017-03-08T22:12:05", "url": "https://files.pythonhosted.org/packages/c2/93/2a7fef7ddeec4f3e97f0588d97d7c69c03f51154dfc414283872e2bc8a6c/Stegano-0.6.8.tar.gz" } ], "0.6.9": [ { "comment_text": "", "digests": { "md5": "633be4498e1d251267719d765bc19e05", "sha256": "2535b229674d221854b35e9eeb9cab18d846091fe984c5662c5a4c140b077d15" }, "downloads": -1, "filename": "Stegano-0.6.9.tar.gz", "has_sig": false, "md5_digest": "633be4498e1d251267719d765bc19e05", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34434, "upload_time": "2017-03-10T07:09:47", "url": "https://files.pythonhosted.org/packages/a6/36/92724f442f723cab0d9fc9590b1a59d4986f173a6e14b11c5bd9edf07efb/Stegano-0.6.9.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "2b550c281f758775f346f3d14022fe22", "sha256": "15ef6eaf7cf43283b9a683389034620cde501741686b3b0c4cc9cd4b3b8565bb" }, "downloads": -1, "filename": "Stegano-0.7.tar.gz", "has_sig": false, "md5_digest": "2b550c281f758775f346f3d14022fe22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 241699, "upload_time": "2017-05-04T19:18:31", "url": "https://files.pythonhosted.org/packages/1a/ae/5d4fd30de391c561be0a6d05018b6c063c1278d5f1c7dfeebf79cabebd49/Stegano-0.7.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "a94fdd2cde9bd576e991561cb17282a5", "sha256": "27cb6d948206d70791859d4e7c233c4c4f61aa91a9dc6a0d312848705528456c" }, "downloads": -1, "filename": "Stegano-0.7.1.tar.gz", "has_sig": false, "md5_digest": "a94fdd2cde9bd576e991561cb17282a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34948, "upload_time": "2017-05-05T09:30:18", "url": "https://files.pythonhosted.org/packages/bb/d1/84c90079c309f4a8269be468275699857fae2bd735b1f231a48331ae658c/Stegano-0.7.1.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "783e7a7b56529ee33bde27f725af7c5f", "sha256": "3c419ab1f008fec382c9e41378df27ca375318959abf11e8ced3c894ecfdaddf" }, "downloads": -1, "filename": "Stegano-0.8.tar.gz", "has_sig": false, "md5_digest": "783e7a7b56529ee33bde27f725af7c5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35394, "upload_time": "2017-05-06T21:24:48", "url": "https://files.pythonhosted.org/packages/19/37/1258ba6031c0b4ad3e0ef844388eb3a3bd75abd4259c2586d07a98aa89f8/Stegano-0.8.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "fad890697fac3cf8a46bf8987d300ae3", "sha256": "382615196c60d2ddbcd3b8a9ca1f649774fcc4770c72ec05fe24035e082110c4" }, "downloads": -1, "filename": "Stegano-0.8.1.tar.gz", "has_sig": false, "md5_digest": "fad890697fac3cf8a46bf8987d300ae3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 225401, "upload_time": "2017-05-16T06:29:22", "url": "https://files.pythonhosted.org/packages/f5/b3/8917ca311d385e6e8183368002c1161f6f17d5e5457958eea01d295a29d1/Stegano-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "4f850503c35932c3e9e448735b54119d", "sha256": "be526ef78317b9cc49dbb65cc0467318660f6e723023bc0fe7df794c22fbc2cd" }, "downloads": -1, "filename": "Stegano-0.8.2.tar.gz", "has_sig": false, "md5_digest": "4f850503c35932c3e9e448735b54119d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 243779, "upload_time": "2017-12-20T21:26:33", "url": "https://files.pythonhosted.org/packages/ac/f4/49a31c2812a34eede8b8b0a034c195ce4ca9c5c2145ad40fc4432ff7aa31/Stegano-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "59eb3d817565dc51800731889971009d", "sha256": "6a02ef852aebe0c723133734bc28c40a54ac2438b7b9f703931c41e7fd00072a" }, "downloads": -1, "filename": "Stegano-0.8.3.tar.gz", "has_sig": false, "md5_digest": "59eb3d817565dc51800731889971009d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 243871, "upload_time": "2018-02-23T20:48:04", "url": "https://files.pythonhosted.org/packages/59/b4/dd317e39be043be0ca3282667501dc4e273c1a961848fba0aa5a0c47fdcb/Stegano-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "dfcb949d42b83ba0496b381040b3f8e5", "sha256": "a185e31080ce9e4e17ce76e58c46bc67332d683bbd42cc3df9be6b23f37fc06e" }, "downloads": -1, "filename": "Stegano-0.8.4.tar.gz", "has_sig": false, "md5_digest": "dfcb949d42b83ba0496b381040b3f8e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 243865, "upload_time": "2018-02-28T21:49:57", "url": "https://files.pythonhosted.org/packages/77/76/07a61c042ac1a1cb3445689b4f140800b16d0e883a46049e221d7a92de66/Stegano-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "3e3d6206fdfd4338445019a4d1790ac9", "sha256": "f499ecc153fe3025134dced92c8d0efbcfac1cb64f17dc3dfcd602d29141df76" }, "downloads": -1, "filename": "Stegano-0.8.5.tar.gz", "has_sig": false, "md5_digest": "3e3d6206fdfd4338445019a4d1790ac9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38529, "upload_time": "2018-04-18T12:31:18", "url": "https://files.pythonhosted.org/packages/1a/5d/f1918a04a17d39f1ae91e1cd006c14a800dcade3ebc8541822d3d628f3a9/Stegano-0.8.5.tar.gz" } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "5111d1a14547ef79f0defb0485563e6a", "sha256": "5a99881ca5f98a04eb42470e8c65c3e1276742618471157247efe756c053ba35" }, "downloads": -1, "filename": "Stegano-0.8.6.tar.gz", "has_sig": false, "md5_digest": "5111d1a14547ef79f0defb0485563e6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35956, "upload_time": "2018-11-05T21:23:14", "url": "https://files.pythonhosted.org/packages/61/ad/e13cda4b9ad705b705fdbb810948c3a9cbe49db4257bbda81a9a98025e12/Stegano-0.8.6.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "93df9d086d4cc16ea61c15a5abdb07d0", "sha256": "353daf84b112aed13511c61c2c79e9f23fff4a94e456de88cf6afcda51271fb7" }, "downloads": -1, "filename": "Stegano-0.9.0.tar.gz", "has_sig": false, "md5_digest": "93df9d086d4cc16ea61c15a5abdb07d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36219, "upload_time": "2018-12-18T22:41:07", "url": "https://files.pythonhosted.org/packages/87/c9/44d8f758ba439beac1ea2f3758bbe888d06f74aa5df5635e7bfcceef7b47/Stegano-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "108e3dc4fb250b5cc9d63af2ec474659", "sha256": "2c7df5f00e3ad172e00c48d6b9da5cab29390de6a41c638e7fd26998d296a1fc" }, "downloads": -1, "filename": "Stegano-0.9.1.tar.gz", "has_sig": false, "md5_digest": "108e3dc4fb250b5cc9d63af2ec474659", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36484, "upload_time": "2019-03-06T21:34:33", "url": "https://files.pythonhosted.org/packages/64/86/c1ce9457915215ea3f65935c37713e08418e9f3379798eeb5e091f99642b/Stegano-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "ee566529c4e87305cc5511a08b6a3ac2", "sha256": "d5e9774af27df701f23cb3bd46a36b3ca88df637f67f44ed34339f4fc53db2c3" }, "downloads": -1, "filename": "Stegano-0.9.2.tar.gz", "has_sig": false, "md5_digest": "ee566529c4e87305cc5511a08b6a3ac2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36579, "upload_time": "2019-04-04T13:40:53", "url": "https://files.pythonhosted.org/packages/be/84/7d31b323dde50b83d0db57457792f293ce8fa87641106a19f79735a1048d/Stegano-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "454586716a456c4fbbb7843c860a5505", "sha256": "294b68388329f14718dcb08855e2b13bc59b32c47e7cc6ecfb42c541f4f25934" }, "downloads": -1, "filename": "Stegano-0.9.3.tar.gz", "has_sig": false, "md5_digest": "454586716a456c4fbbb7843c860a5505", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36860, "upload_time": "2019-04-10T13:19:04", "url": "https://files.pythonhosted.org/packages/d4/75/ecf2e9e83348d04cc76fb3d30937155e3227a14b5107211e1289b589ede2/Stegano-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "95811d24300f85a78873bcbc582f25bb", "sha256": "7bc1e74eb83009f8025da5697cc6302ab9f3459e44472e80c502ef599b0c4656" }, "downloads": -1, "filename": "Stegano-0.9.4.tar.gz", "has_sig": false, "md5_digest": "95811d24300f85a78873bcbc582f25bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 240560, "upload_time": "2019-06-04T22:46:47", "url": "https://files.pythonhosted.org/packages/eb/03/adf44dedc4a72e15c7cc9572ca7a1e3bfbd1b76cbce116a4db0b580828ad/Stegano-0.9.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "95811d24300f85a78873bcbc582f25bb", "sha256": "7bc1e74eb83009f8025da5697cc6302ab9f3459e44472e80c502ef599b0c4656" }, "downloads": -1, "filename": "Stegano-0.9.4.tar.gz", "has_sig": false, "md5_digest": "95811d24300f85a78873bcbc582f25bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 240560, "upload_time": "2019-06-04T22:46:47", "url": "https://files.pythonhosted.org/packages/eb/03/adf44dedc4a72e15c7cc9572ca7a1e3bfbd1b76cbce116a4db0b580828ad/Stegano-0.9.4.tar.gz" } ] }