pysha3


Namepysha3 JSON
Version 1.0.2 PyPI version JSON
download
home_pagehttps://github.com/tiran/pysha3
SummarySHA-3 (Keccak) for Python 2.7 - 3.5
upload_time2017-02-05 16:42:08
maintainerNone
docs_urlNone
authorChristian Heimes
requires_pythonNone
licensePSFL (Keccak: CC0 1.0 Universal)
keywords sha3 sha-3 keccak hash
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            ======
pysha3
======

SHA-3 wrapper (keccak) for Python. The package is a wrapper around the
optimized Keccak Code Package, https://github.com/gvanas/KeccakCodePackage .

The module is a standalone version of my SHA-3 module from Python 3.6
(currently under development). The code in sha3module.c has been modified to
be compatible with Python 2.7 to 3.5. Python 2.6 and earlier are not
supported.


Updates since pysha 0.3
=======================

**pysha3 1.0 is not compatible with pysha3 0.3!**

pysha3 < 1.0 used the old Keccak implementation. During the finalization of
SHA3, NIST changed the delimiter suffix from 0x01 to 0x06. The Keccak sponge
function stayed the same. pysha3 1.0 provides the previous Keccak hash, too.


Platforms
=========

pysha3 has been successfully tested on several platforms:

 - Linux (GCC, clang) on X86, X86_64 and ARMv6 (little endian)
 - Windows (VS 2008, VS 2010, VS2015) on X86 and X86_64


Usage
=====

The `sha3` module contains several constructors for hash objects with a
PEP 247 compatible interface. The module provides SHA3, SHAKE and Keccak:

* `sha3_228()`, `sha3_256()`, `sha3_384()`, and `sha3_512()`
* `shake_128()`, `shake_256()`
* `keccak_228()`, `keccak_256()`, `keccak_384()`, and `keccak_512()`

The `sha3` module monkey patches the `hashlib` module . The monkey patch is
automatically activated with the first import of the `sha3` module. The
`hashlib` module of Python 3.6 will support the four SHA-3 algorithms and
the two SHAKE algorithms on all platforms. Therefore you shouldn't use the
sha3 module directly and rather go through the `hashlib` interface::

  >>> import sys
  >>> import hashlib
  >>> if sys.version_info < (3, 6):
  ...    import sha3
  >>> s = hashlib.sha3_512()
  >>> s.name
  'sha3_512'
  >>> s.digest_size
  64
  >>> s.update(b"data")
  >>> s.hexdigest()
  'ceca4daf960c2bbfb4a9edaca9b8137a801b65bae377e0f534ef9141c8684c0fedc1768d1afde9766572846c42b935f61177eaf97d355fa8dc2bca3fecfa754d'

  >>> s = hashlib.shake_256()
  >>> s.update(b"data")
  >>> s.hexdigest(4)
  'c73dbed8'
  >>> s.hexdigest(8)
  'c73dbed8527f5ae0'
  >>> s.hexdigest(16)
  'c73dbed8527f5ae0568679f30ecc5cb6'

  >>> import sha3
  >>> k = sha3.keccak_512()
  >>> k.update(b"data")
  >>> k.hexdigest()
  '1065aceeded3a5e4412e2187e919bffeadf815f5bd73d37fe00d384fe29f55f08462fdabe1007b993ce5b8119630e7db93101d9425d6e352e22ffe3dcb56b825'

Changelog
=========

pysha3 1.0.2
------------

*Release: 05-Feb-2017*

- Rename internal C extension to _pysha3 to avoild conflict with Python 3.6'
  _sha3 extension.

pysha3 1.0.1
------------

*Release: 24-Jan-2017*

- Fix github.org -> github.com (Pi Delport)

- Fix endianness checks for Python 2 (William Grant)

- Fix changelog, the Christmas release was 1.0.0, not 1.1.0

pysha3 1.0.0
------------

*Release date: 24-Dec-2016*

- Synchronize with Python 3.6.0 release

- Move all backport related additions to backport.inc

- Fix flake8 violations


pysha3 1.0b1
------------

*Release date: 01-May-2016*

- Update backend to use the latest Keccak Code Package. pysha3 now implements
  the official NIST standard. The old Keccak hashes are available with
  keccak prefix.

- Add SHAKE support.

- All sha3, shake and keccak variants are separate types instead of factory
  functions that return the same type.

- Drop Python 2.6 and Python 3.0 to 3.3 support.

- Fix typo that disabled threading optimization.

- Add vector files for additional tests.

- Add experimental HMAC support based on examples from
  http://wolfgang-ehrhardt.de/hmac-sha3-testvectors.html .

- Test hashing of unaligned data.

- Add ISO C11 memset_s() function as _Py_memset_s() in order to securely
  wipe memory that holds sensitive data. The page
  https://www.securecoding.cert.org/confluence/display/seccode/MSC06-C.+Be+aware+of+compiler+optimization+when+dealing+with+sensitive+data
  explains the motivation for memset_s().

- Add tox support.

- Add Travis and appveyor integration.

- Add _capacity_bits, _rate_bits and _suffix attributes for diagnostic
  purposes.


pysha3 0.3
----------

*Release date: 14-Oct-2012*

- Fix 64bit big endian support

- Add workaround for alignment error on 64bit SPARC machine by using the opt32
  implementation.

- block_size now returns NotImplemented to prevent users from using pysha3
  with the hmac module.


pysha3 0.2.2
------------

*Release date: 07-Oct-2012*

- Re-add brg_endian.h to fix issue on Solaris (big endian platform)


pysha3 0.2.1
------------

*Release date: 06-Oct-2012*

- Fix MANIFEST.in to include Makefile and tests.py

- Add setup.py test command with hack for inplace builds

- Enhance README.txt and fixed its markup


pysha3 0.2
----------

*Release date: 06-Oct-2012*

- Change directory struct to use the same directory layout as Python 3.4.

- Remove C++ comments from Keccak sources for ANSI C compatibility.

- Declare all Keccak functions and globals as static to avoid name clashes.

- Remove alias sha3() for sha3_512().

- Add block_size attribute. Keccak has a internal sponge size of 1600 bits.

- Release GIL around SHA3_update() calls.

- Monkey patch the hashlib module to support, e.g. hashlib.sha3_512() and
  hashlib.new("sha3_512")

- Release GIL around SHA3_update() when the data exceeds a certain size.

- Fix build on platforms with an unsigned 64bit integer type (uint64_t). The
  module falls back to 32bit implementation of Keccak with interleave tables.


pysha3 0.1
----------

*Release date: 04-Oct-2012*

- first release

- based on KeccakReferenceAndOptimized-3.2.zip
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/tiran/pysha3",
    "name": "pysha3",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "sha3 sha-3 keccak hash",
    "author": "Christian Heimes",
    "author_email": "christian@python.org",
    "download_url": "https://files.pythonhosted.org/packages/73/bf/978d424ac6c9076d73b8fdc8ab8ad46f98af0c34669d736b1d83c758afee/pysha3-1.0.2.tar.gz",
    "platform": "POSIX,Windows",
    "description": "======\npysha3\n======\n\nSHA-3 wrapper (keccak) for Python. The package is a wrapper around the\noptimized Keccak Code Package, https://github.com/gvanas/KeccakCodePackage .\n\nThe module is a standalone version of my SHA-3 module from Python 3.6\n(currently under development). The code in sha3module.c has been modified to\nbe compatible with Python 2.7 to 3.5. Python 2.6 and earlier are not\nsupported.\n\n\nUpdates since pysha 0.3\n=======================\n\n**pysha3 1.0 is not compatible with pysha3 0.3!**\n\npysha3 < 1.0 used the old Keccak implementation. During the finalization of\nSHA3, NIST changed the delimiter suffix from 0x01 to 0x06. The Keccak sponge\nfunction stayed the same. pysha3 1.0 provides the previous Keccak hash, too.\n\n\nPlatforms\n=========\n\npysha3 has been successfully tested on several platforms:\n\n - Linux (GCC, clang) on X86, X86_64 and ARMv6 (little endian)\n - Windows (VS 2008, VS 2010, VS2015) on X86 and X86_64\n\n\nUsage\n=====\n\nThe `sha3` module contains several constructors for hash objects with a\nPEP 247 compatible interface. The module provides SHA3, SHAKE and Keccak:\n\n* `sha3_228()`, `sha3_256()`, `sha3_384()`, and `sha3_512()`\n* `shake_128()`, `shake_256()`\n* `keccak_228()`, `keccak_256()`, `keccak_384()`, and `keccak_512()`\n\nThe `sha3` module monkey patches the `hashlib` module . The monkey patch is\nautomatically activated with the first import of the `sha3` module. The\n`hashlib` module of Python 3.6 will support the four SHA-3 algorithms and\nthe two SHAKE algorithms on all platforms. Therefore you shouldn't use the\nsha3 module directly and rather go through the `hashlib` interface::\n\n  >>> import sys\n  >>> import hashlib\n  >>> if sys.version_info < (3, 6):\n  ...    import sha3\n  >>> s = hashlib.sha3_512()\n  >>> s.name\n  'sha3_512'\n  >>> s.digest_size\n  64\n  >>> s.update(b\"data\")\n  >>> s.hexdigest()\n  'ceca4daf960c2bbfb4a9edaca9b8137a801b65bae377e0f534ef9141c8684c0fedc1768d1afde9766572846c42b935f61177eaf97d355fa8dc2bca3fecfa754d'\n\n  >>> s = hashlib.shake_256()\n  >>> s.update(b\"data\")\n  >>> s.hexdigest(4)\n  'c73dbed8'\n  >>> s.hexdigest(8)\n  'c73dbed8527f5ae0'\n  >>> s.hexdigest(16)\n  'c73dbed8527f5ae0568679f30ecc5cb6'\n\n  >>> import sha3\n  >>> k = sha3.keccak_512()\n  >>> k.update(b\"data\")\n  >>> k.hexdigest()\n  '1065aceeded3a5e4412e2187e919bffeadf815f5bd73d37fe00d384fe29f55f08462fdabe1007b993ce5b8119630e7db93101d9425d6e352e22ffe3dcb56b825'\n\nChangelog\n=========\n\npysha3 1.0.2\n------------\n\n*Release: 05-Feb-2017*\n\n- Rename internal C extension to _pysha3 to avoild conflict with Python 3.6'\n  _sha3 extension.\n\npysha3 1.0.1\n------------\n\n*Release: 24-Jan-2017*\n\n- Fix github.org -> github.com (Pi Delport)\n\n- Fix endianness checks for Python 2 (William Grant)\n\n- Fix changelog, the Christmas release was 1.0.0, not 1.1.0\n\npysha3 1.0.0\n------------\n\n*Release date: 24-Dec-2016*\n\n- Synchronize with Python 3.6.0 release\n\n- Move all backport related additions to backport.inc\n\n- Fix flake8 violations\n\n\npysha3 1.0b1\n------------\n\n*Release date: 01-May-2016*\n\n- Update backend to use the latest Keccak Code Package. pysha3 now implements\n  the official NIST standard. The old Keccak hashes are available with\n  keccak prefix.\n\n- Add SHAKE support.\n\n- All sha3, shake and keccak variants are separate types instead of factory\n  functions that return the same type.\n\n- Drop Python 2.6 and Python 3.0 to 3.3 support.\n\n- Fix typo that disabled threading optimization.\n\n- Add vector files for additional tests.\n\n- Add experimental HMAC support based on examples from\n  http://wolfgang-ehrhardt.de/hmac-sha3-testvectors.html .\n\n- Test hashing of unaligned data.\n\n- Add ISO C11 memset_s() function as _Py_memset_s() in order to securely\n  wipe memory that holds sensitive data. The page\n  https://www.securecoding.cert.org/confluence/display/seccode/MSC06-C.+Be+aware+of+compiler+optimization+when+dealing+with+sensitive+data\n  explains the motivation for memset_s().\n\n- Add tox support.\n\n- Add Travis and appveyor integration.\n\n- Add _capacity_bits, _rate_bits and _suffix attributes for diagnostic\n  purposes.\n\n\npysha3 0.3\n----------\n\n*Release date: 14-Oct-2012*\n\n- Fix 64bit big endian support\n\n- Add workaround for alignment error on 64bit SPARC machine by using the opt32\n  implementation.\n\n- block_size now returns NotImplemented to prevent users from using pysha3\n  with the hmac module.\n\n\npysha3 0.2.2\n------------\n\n*Release date: 07-Oct-2012*\n\n- Re-add brg_endian.h to fix issue on Solaris (big endian platform)\n\n\npysha3 0.2.1\n------------\n\n*Release date: 06-Oct-2012*\n\n- Fix MANIFEST.in to include Makefile and tests.py\n\n- Add setup.py test command with hack for inplace builds\n\n- Enhance README.txt and fixed its markup\n\n\npysha3 0.2\n----------\n\n*Release date: 06-Oct-2012*\n\n- Change directory struct to use the same directory layout as Python 3.4.\n\n- Remove C++ comments from Keccak sources for ANSI C compatibility.\n\n- Declare all Keccak functions and globals as static to avoid name clashes.\n\n- Remove alias sha3() for sha3_512().\n\n- Add block_size attribute. Keccak has a internal sponge size of 1600 bits.\n\n- Release GIL around SHA3_update() calls.\n\n- Monkey patch the hashlib module to support, e.g. hashlib.sha3_512() and\n  hashlib.new(\"sha3_512\")\n\n- Release GIL around SHA3_update() when the data exceeds a certain size.\n\n- Fix build on platforms with an unsigned 64bit integer type (uint64_t). The\n  module falls back to 32bit implementation of Keccak with interleave tables.\n\n\npysha3 0.1\n----------\n\n*Release date: 04-Oct-2012*\n\n- first release\n\n- based on KeccakReferenceAndOptimized-3.2.zip",
    "bugtrack_url": null,
    "license": "PSFL (Keccak: CC0 1.0 Universal)",
    "summary": "SHA-3 (Keccak) for Python 2.7 - 3.5",
    "version": "1.0.2",
    "split_keywords": [
        "sha3",
        "sha-3",
        "keccak",
        "hash"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "db333231ef6814b31a8e7af47bcd94e9",
                "sha256": "6e6a84efb7856f5d760ee55cd2b446972cb7b835676065f6c4f694913ea8f8d9"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp27-cp27m-manylinux1_i686.whl",
            "has_sig": true,
            "md5_digest": "db333231ef6814b31a8e7af47bcd94e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 56803,
            "upload_time": "2017-07-18T12:49:47",
            "upload_time_iso_8601": "2017-07-18T12:49:47.822630Z",
            "url": "https://files.pythonhosted.org/packages/51/b0/3a1b1d1f827aee786e68f459ce599bc88e22739ea2a6072bd580d39190e0/pysha3-1.0.2-cp27-cp27m-manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "23bc371be3020a057055b55f1da95a7d",
                "sha256": "f9046d59b3e72aa84f6dae83a040bd1184ebd7fef4e822d38186a8158c89e3cf"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp27-cp27m-manylinux1_x86_64.whl",
            "has_sig": true,
            "md5_digest": "23bc371be3020a057055b55f1da95a7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 127839,
            "upload_time": "2017-07-18T12:49:50",
            "upload_time_iso_8601": "2017-07-18T12:49:50.692026Z",
            "url": "https://files.pythonhosted.org/packages/ea/bd/f772ef2dc92494e5b78cb7c50f2a35a6d49153fd1ef5dd46a04b48462b43/pysha3-1.0.2-cp27-cp27m-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "b3317b93ad2208584b6ab29452b9d100",
                "sha256": "68c3a60a39f9179b263d29e221c1bd6e01353178b14323c39cc70593c30f21c5"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp27-cp27mu-manylinux1_i686.whl",
            "has_sig": true,
            "md5_digest": "b3317b93ad2208584b6ab29452b9d100",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 56802,
            "upload_time": "2017-07-18T12:49:53",
            "upload_time_iso_8601": "2017-07-18T12:49:53.762643Z",
            "url": "https://files.pythonhosted.org/packages/a7/e7/df1014623934b050ca6d371dd53ad650a4ab77975695808d6a9717424491/pysha3-1.0.2-cp27-cp27mu-manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "7fbb76ed9b48c0a49280110784b130ce",
                "sha256": "59111c08b8f34495575d12e5f2ce3bafb98bea470bc81e70c8b6df99aef0dd2f"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp27-cp27mu-manylinux1_x86_64.whl",
            "has_sig": true,
            "md5_digest": "7fbb76ed9b48c0a49280110784b130ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 127839,
            "upload_time": "2017-07-18T12:49:56",
            "upload_time_iso_8601": "2017-07-18T12:49:56.423054Z",
            "url": "https://files.pythonhosted.org/packages/c5/bb/7d793dfab828e01adb46e3c5976fe99acda12a954c728427cceb2acd7ee9/pysha3-1.0.2-cp27-cp27mu-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "82f31e0e6b027b6bfeefd7896c6520f2",
                "sha256": "9fdd28884c5d0b4edfed269b12badfa07f1c89dbc5c9c66dd279833894a9896b"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp27-cp27m-win32.whl",
            "has_sig": false,
            "md5_digest": "82f31e0e6b027b6bfeefd7896c6520f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 20119,
            "upload_time": "2017-02-05T16:56:03",
            "upload_time_iso_8601": "2017-02-05T16:56:03.719536Z",
            "url": "https://files.pythonhosted.org/packages/5c/0b/86b41f217d22f80cd09cee857d1089eb5a35aa50b1598fbd6b0258d3f5da/pysha3-1.0.2-cp27-cp27m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "021cdd2f47094b7688b48aa983973ffb",
                "sha256": "41be70b06c8775a9e4d4eeb52f2f6a3f356f17539a54eac61f43a29e42fd453d"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp27-cp27m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "021cdd2f47094b7688b48aa983973ffb",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 36271,
            "upload_time": "2017-02-05T16:56:05",
            "upload_time_iso_8601": "2017-02-05T16:56:05.870235Z",
            "url": "https://files.pythonhosted.org/packages/70/c7/793323eceb95761d64f80c482745ce91d0d57e5980478aa06703444330af/pysha3-1.0.2-cp27-cp27m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "bebdc2246195616f0c26d07d58d81bdd",
                "sha256": "571a246308a7b63f15f5aa9651f99cf30f2a6acba18eddf28f1510935968b603"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp33-cp33m-win32.whl",
            "has_sig": false,
            "md5_digest": "bebdc2246195616f0c26d07d58d81bdd",
            "packagetype": "bdist_wheel",
            "python_version": "cp33",
            "requires_python": null,
            "size": 21779,
            "upload_time": "2017-02-05T16:56:06",
            "upload_time_iso_8601": "2017-02-05T16:56:06.861900Z",
            "url": "https://files.pythonhosted.org/packages/a8/30/81aa98538f91d039dc47191807bbdfadbc752df073cf624840e2677c7466/pysha3-1.0.2-cp33-cp33m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "6d83fa20d1094fac33815da9040fc71b",
                "sha256": "93abd775dac570cb9951c4e423bcb2bc6303a9d1dc0dc2b7afa2dd401d195b24"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp33-cp33m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6d83fa20d1094fac33815da9040fc71b",
            "packagetype": "bdist_wheel",
            "python_version": "cp33",
            "requires_python": null,
            "size": 36229,
            "upload_time": "2017-02-05T16:56:08",
            "upload_time_iso_8601": "2017-02-05T16:56:08.690315Z",
            "url": "https://files.pythonhosted.org/packages/b4/44/e5450a410829d73d8859755214b4865cb094d7a946919434a8d20d300632/pysha3-1.0.2-cp33-cp33m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "fe42c5d0bf76b9dcbcc7712027114505",
                "sha256": "11a2ba7a2e1d9669d0052fc8fb30f5661caed5512586ecbeeaf6bf9478ab5c48"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp34-cp34m-manylinux1_i686.whl",
            "has_sig": true,
            "md5_digest": "fe42c5d0bf76b9dcbcc7712027114505",
            "packagetype": "bdist_wheel",
            "python_version": "cp34",
            "requires_python": null,
            "size": 57315,
            "upload_time": "2017-07-18T12:49:59",
            "upload_time_iso_8601": "2017-07-18T12:49:59.075117Z",
            "url": "https://files.pythonhosted.org/packages/5f/3b/87365e95ae37adcee0ad4995b2603be5a3d306234b6474462d732688788a/pysha3-1.0.2-cp34-cp34m-manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "0cc6c414d37bad1820b594adfd3bb56c",
                "sha256": "5ec8da7c5c70a53b5fa99094af3ba8d343955b212bc346a0d25f6ff75853999f"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp34-cp34m-manylinux1_x86_64.whl",
            "has_sig": true,
            "md5_digest": "0cc6c414d37bad1820b594adfd3bb56c",
            "packagetype": "bdist_wheel",
            "python_version": "cp34",
            "requires_python": null,
            "size": 128764,
            "upload_time": "2017-07-18T12:50:01",
            "upload_time_iso_8601": "2017-07-18T12:50:01.768801Z",
            "url": "https://files.pythonhosted.org/packages/2f/92/5a82607ca24e298645941a5d5b8d69150980680ced2ec19840081181e2a7/pysha3-1.0.2-cp34-cp34m-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "3f8aefd422ab3d5ff24f701158ebd087",
                "sha256": "9c778fa8b161dc9348dc5cc361e94d54aa5ff18413788f4641f6600d4893a608"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp34-cp34m-win32.whl",
            "has_sig": false,
            "md5_digest": "3f8aefd422ab3d5ff24f701158ebd087",
            "packagetype": "bdist_wheel",
            "python_version": "cp34",
            "requires_python": null,
            "size": 21789,
            "upload_time": "2017-02-05T16:56:09",
            "upload_time_iso_8601": "2017-02-05T16:56:09.707466Z",
            "url": "https://files.pythonhosted.org/packages/f1/d2/31d0e05e60b08035b946536d96c5815075676f8fc68b4f83d76dabb8598a/pysha3-1.0.2-cp34-cp34m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "49de2e767a369d37b395f379cac82851",
                "sha256": "fd7e66999060d079e9c0e8893e78d8017dad4f59721f6fe0be6307cd32127a07"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp34-cp34m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "49de2e767a369d37b395f379cac82851",
            "packagetype": "bdist_wheel",
            "python_version": "cp34",
            "requires_python": null,
            "size": 36248,
            "upload_time": "2017-02-05T16:56:10",
            "upload_time_iso_8601": "2017-02-05T16:56:10.737064Z",
            "url": "https://files.pythonhosted.org/packages/9e/5c/853501051166ad56decdd16598e073ee6720a3d25bd119919374880c2060/pysha3-1.0.2-cp34-cp34m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c20ff9f71db0b3074a3355c61788ba71",
                "sha256": "827b308dc025efe9b6b7bae36c2e09ed0118a81f792d888548188e97b9bf9a3d"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp35-cp35m-manylinux1_i686.whl",
            "has_sig": true,
            "md5_digest": "c20ff9f71db0b3074a3355c61788ba71",
            "packagetype": "bdist_wheel",
            "python_version": "cp35",
            "requires_python": null,
            "size": 56006,
            "upload_time": "2017-07-18T12:50:04",
            "upload_time_iso_8601": "2017-07-18T12:50:04.922390Z",
            "url": "https://files.pythonhosted.org/packages/d1/d3/2048e03d1234b00aee002d1055f1ea3c94fd9bacde2529a40be2bc510838/pysha3-1.0.2-cp35-cp35m-manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ddda02f0aa1d818d612689cfdc64dc9d",
                "sha256": "4416f16b0f1605c25f627966f76873e432971824778b369bd9ce1bb63d6566d9"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp35-cp35m-manylinux1_x86_64.whl",
            "has_sig": true,
            "md5_digest": "ddda02f0aa1d818d612689cfdc64dc9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp35",
            "requires_python": null,
            "size": 127258,
            "upload_time": "2017-07-18T12:50:07",
            "upload_time_iso_8601": "2017-07-18T12:50:07.503145Z",
            "url": "https://files.pythonhosted.org/packages/4b/a5/7eb00630fa4dc9751464faab8b5908706a4190a3ab2a37b2c03cabb2c9a8/pysha3-1.0.2-cp35-cp35m-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "fc4a2abc34c606b741bebbb8fd7a7392",
                "sha256": "c93a2676e6588abcfaecb73eb14485c81c63b94fca2000a811a7b4fb5937b8e8"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp35-cp35m-win32.whl",
            "has_sig": false,
            "md5_digest": "fc4a2abc34c606b741bebbb8fd7a7392",
            "packagetype": "bdist_wheel",
            "python_version": "cp35",
            "requires_python": null,
            "size": 22209,
            "upload_time": "2017-02-05T16:56:11",
            "upload_time_iso_8601": "2017-02-05T16:56:11.925912Z",
            "url": "https://files.pythonhosted.org/packages/90/58/6979db6b34746955cf6208bdeac257dc092635b372c92020268ab4e289c1/pysha3-1.0.2-cp35-cp35m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "473beaa711dad78b3e392eb415cbc506",
                "sha256": "684cb01d87ed6ff466c135f1c83e7e4042d0fc668fa20619f581e6add1d38d77"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp35-cp35m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "473beaa711dad78b3e392eb415cbc506",
            "packagetype": "bdist_wheel",
            "python_version": "cp35",
            "requires_python": null,
            "size": 35903,
            "upload_time": "2017-02-05T16:56:13",
            "upload_time_iso_8601": "2017-02-05T16:56:13.372717Z",
            "url": "https://files.pythonhosted.org/packages/28/92/a11e9fd262f985a4af3902dee2473442ed1fa56b65b33294ecfdb1fa01ed/pysha3-1.0.2-cp35-cp35m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c18acefb7d2e0ddf5acb091f3c977883",
                "sha256": "386998ee83e313b6911327174e088021f9f2061cbfa1651b97629b761e9ef5c4"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp36-cp36m-manylinux1_i686.whl",
            "has_sig": true,
            "md5_digest": "c18acefb7d2e0ddf5acb091f3c977883",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 56167,
            "upload_time": "2017-07-18T12:50:10",
            "upload_time_iso_8601": "2017-07-18T12:50:10.325515Z",
            "url": "https://files.pythonhosted.org/packages/ac/ce/060c3a422d8550da217e01c78d842286257f5faf1f0d93198121addd7a7e/pysha3-1.0.2-cp36-cp36m-manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d397ef5a3332992fac7c29636f5cb7f1",
                "sha256": "c7c2adcc43836223680ebdf91f1d3373543dc32747c182c8ca2e02d1b69ce030"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp36-cp36m-manylinux1_x86_64.whl",
            "has_sig": true,
            "md5_digest": "d397ef5a3332992fac7c29636f5cb7f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 127428,
            "upload_time": "2017-07-18T12:50:13",
            "upload_time_iso_8601": "2017-07-18T12:50:13.470631Z",
            "url": "https://files.pythonhosted.org/packages/32/2a/b93e0c6d90c7c45e2fab35d7ef349e8c5bd7387a048e961b041fd9521556/pysha3-1.0.2-cp36-cp36m-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2f1c56c495c2aed4cf3a2b4dac43e03e",
                "sha256": "cd5c961b603bd2e6c2b5ef9976f3238a561c58569945d4165efb9b9383b050ef"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "2f1c56c495c2aed4cf3a2b4dac43e03e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 22210,
            "upload_time": "2017-02-05T16:56:14",
            "upload_time_iso_8601": "2017-02-05T16:56:14.778862Z",
            "url": "https://files.pythonhosted.org/packages/5a/76/82377ddfad120b823bc56f1a341c602b74bc64291b9c83226e1b1c6cef80/pysha3-1.0.2-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "fd125d5fa90182ea6047bcc6b25e8b14",
                "sha256": "0060a66be16665d90c432f55a0ba1f6480590cfb7d2ad389e688a399183474f0"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fd125d5fa90182ea6047bcc6b25e8b14",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 35903,
            "upload_time": "2017-02-05T16:56:16",
            "upload_time_iso_8601": "2017-02-05T16:56:16.073013Z",
            "url": "https://files.pythonhosted.org/packages/b3/a9/108c8606e5e8a147afc5dcc06d730c1f8e07e189789ee8351321075d5832/pysha3-1.0.2-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "59cd2db7a9988c1f3f6aee40145e0c96",
                "sha256": "fe988e73f2ce6d947220624f04d467faf05f1bbdbc64b0a201296bb3af92739e"
            },
            "downloads": -1,
            "filename": "pysha3-1.0.2.tar.gz",
            "has_sig": true,
            "md5_digest": "59cd2db7a9988c1f3f6aee40145e0c96",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 829192,
            "upload_time": "2017-02-05T16:42:08",
            "upload_time_iso_8601": "2017-02-05T16:42:08.678843Z",
            "url": "https://files.pythonhosted.org/packages/73/bf/978d424ac6c9076d73b8fdc8ab8ad46f98af0c34669d736b1d83c758afee/pysha3-1.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2017-02-05 16:42:08",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "tiran",
    "github_project": "pysha3",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pysha3"
}
        
Elapsed time: 0.02891s