Skip to main content

The secure Argon2 password hashing algorithm.

Project description

Documentation Status CI Status Test Coverage IRC Code style: black

Argon2 won the Password Hashing Competition and argon2-cffi is the simplest way to use it in Python and PyPy:

>>> from argon2 import PasswordHasher
>>> ph = PasswordHasher()
>>> hash = ph.hash("s3kr3tp4ssw0rd")
>>> hash  # doctest: +SKIP
'$argon2id$v=19$m=102400,t=2,p=8$tSm+JOWigOgPZx/g44K5fQ$WDyus6py50bVFIPkjA28lQ'
>>> ph.verify(hash, "s3kr3tp4ssw0rd")
True
>>> ph.check_needs_rehash(hash)
False
>>> ph.verify(hash, "t0t411ywr0ng")
Traceback (most recent call last):
  ...
argon2.exceptions.VerifyMismatchError: The password does not match the supplied hash

argon2-cffi’s documentation lives at Read the Docs, the code on GitHub. It’s rigorously tested on Python 2.7, 3.5+, and PyPy.

Release Information

20.1.0 (2020-05-11)

Vendoring Argon2 @ 62358ba (20190702)

Backward-incompatible changes:

none

Deprecations:

none

Changes:

  • It is now possible to manually override the detection of SSE2 using the ARGON2_CFFI_USE_SSE2 environment variable.

Full changelog.

Credits & License

argon2-cffi is maintained by Hynek Schlawack and released under the MIT license.

The development is kindly supported by Variomedia AG.

A full list of contributors can be found in GitHub’s overview.

Vendored Code

Argon2

The original Argon2 repo can be found at https://github.com/P-H-C/phc-winner-argon2/.

Except for the components listed below, the Argon2 code in this repository is copyright (c) 2015 Daniel Dinu, Dmitry Khovratovich (main authors), Jean-Philippe Aumasson and Samuel Neves, and under CC0 license.

The string encoding routines in src/encoding.c are copyright (c) 2015 Thomas Pornin, and under CC0 license.

The BLAKE2 code in src/blake2/ is copyright (c) Samuel Neves, 2013-2015, and under CC0 license.

The authors of Argon2 also were very helpful to get the library to compile on ancient versions of Visual Studio for ancient versions of Python.

The documentation also quotes frequently from the Argon2 paper to avoid mistakes by rephrasing.

msinttypes

In order to be able to compile on Visual Studio 2008 and Visual Studio 2010 which are required for Python 2.7, we also ship two C headers with integer types. They are from the msinttypes project (auto-import on GitHub) and licensed under New BSD:

Copyright (c) 2006-2013 Alexander Chemeris

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  3. Neither the name of the product nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR ‘’AS IS’’ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

argon2-cffi-20.1.0.tar.gz (1.8 MB view details)

Uploaded Source

Built Distributions

argon2_cffi-20.1.0-pp37-pypy37_pp73-win_amd64.whl (39.8 kB view details)

Uploaded PyPy Windows x86-64

argon2_cffi-20.1.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (36.0 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

argon2_cffi-20.1.0-pp36-pypy36_pp73-win32.whl (38.6 kB view details)

Uploaded PyPy Windows x86

argon2_cffi-20.1.0-pp36-pypy36_pp73-macosx_10_7_x86_64.whl (36.0 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

argon2_cffi-20.1.0-cp39-cp39-win_amd64.whl (42.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

argon2_cffi-20.1.0-cp39-cp39-win32.whl (38.7 kB view details)

Uploaded CPython 3.9 Windows x86

argon2_cffi-20.1.0-cp38-cp38-win_amd64.whl (42.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

argon2_cffi-20.1.0-cp38-cp38-win32.whl (38.7 kB view details)

Uploaded CPython 3.8 Windows x86

argon2_cffi-20.1.0-cp37-cp37m-win_amd64.whl (42.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

argon2_cffi-20.1.0-cp37-cp37m-win32.whl (38.7 kB view details)

Uploaded CPython 3.7m Windows x86

argon2_cffi-20.1.0-cp37-abi3-macosx_10_6_intel.whl (65.8 kB view details)

Uploaded CPython 3.7+ macOS 10.6+ intel

argon2_cffi-20.1.0-cp36-cp36m-win_amd64.whl (42.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

argon2_cffi-20.1.0-cp36-cp36m-win32.whl (38.7 kB view details)

Uploaded CPython 3.6m Windows x86

argon2_cffi-20.1.0-cp35-cp35m-win_amd64.whl (41.3 kB view details)

Uploaded CPython 3.5m Windows x86-64

argon2_cffi-20.1.0-cp35-cp35m-win32.whl (37.5 kB view details)

Uploaded CPython 3.5m Windows x86

argon2_cffi-20.1.0-cp35-abi3-manylinux1_x86_64.whl (98.0 kB view details)

Uploaded CPython 3.5+

argon2_cffi-20.1.0-cp27-cp27mu-manylinux1_x86_64.whl (101.2 kB view details)

Uploaded CPython 2.7mu

argon2_cffi-20.1.0-cp27-cp27m-win_amd64.whl (37.5 kB view details)

Uploaded CPython 2.7m Windows x86-64

argon2_cffi-20.1.0-cp27-cp27m-win32.whl (35.7 kB view details)

Uploaded CPython 2.7m Windows x86

argon2_cffi-20.1.0-cp27-cp27m-manylinux1_x86_64.whl (101.2 kB view details)

Uploaded CPython 2.7m

argon2_cffi-20.1.0-cp27-cp27m-macosx_10_6_intel.whl (65.7 kB view details)

Uploaded CPython 2.7m macOS 10.6+ intel

File details

Details for the file argon2-cffi-20.1.0.tar.gz.

File metadata

  • Download URL: argon2-cffi-20.1.0.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for argon2-cffi-20.1.0.tar.gz
Algorithm Hash digest
SHA256 d8029b2d3e4b4cea770e9e5a0104dd8fa185c1724a0f01528ae4826a6d25f97d
MD5 e49ccb29351387fd853f31bf19b67f59
BLAKE2b-256 74fdd78e003a79c453e8454197092fce9d1c6099445b7e7da0b04eb4fe1dbab7

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 39.8 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for argon2_cffi-20.1.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 36320372133a003374ef4275fbfce78b7ab581440dfca9f9471be3dd9a522428
MD5 104be5e544ad77d7ebf5417b53c27f1e
BLAKE2b-256 a256672e8a9989a7ab93ee129bfba4b6ccee969243af746b4a0004d39119d3c1

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 36.0 kB
  • Tags: PyPy, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for argon2_cffi-20.1.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3aa804c0e52f208973845e8b10c70d8957c9e5a666f702793256242e9167c4e0
MD5 48db5980ca3dba126b6a1ed4da0bfd83
BLAKE2b-256 809321244b811b6e2f2af7f75b236f922084fb6bc8e512fdefff68c37605ec4a

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 38.6 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for argon2_cffi-20.1.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 8282b84ceb46b5b75c3a882b28856b8cd7e647ac71995e71b6705ec06fc232c3
MD5 eae5a065a4a9f18cef5ebbae45dcea9b
BLAKE2b-256 41832e843abe6257fd251fbce388ec5466bc8d762eabf72322f74992262bf9eb

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-pp36-pypy36_pp73-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-pp36-pypy36_pp73-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 36.0 kB
  • Tags: PyPy, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for argon2_cffi-20.1.0-pp36-pypy36_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b94042e5dcaa5d08cf104a54bfae614be502c6f44c9c89ad1535b2ebdaacbd4c
MD5 16f06a9771d8b51da152a23436efceef
BLAKE2b-256 0f54ede47df2970b85eafe501cc162fa85cd2e6b06b0602d01c747d452ac40bf

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 42.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for argon2_cffi-20.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8a84934bd818e14a17943de8099d41160da4a336bcc699bb4c394bbb9b94bd32
MD5 012bc7e5c35728155c3049849d185138
BLAKE2b-256 3e1b2e5e137901626d893cf5c247d10e9e441bc921d5f72d2b7f4805ad990ffa

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for argon2_cffi-20.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e2db6e85c057c16d0bd3b4d2b04f270a7467c147381e8fd73cbbe5bc719832be
MD5 247b0fafc4ebcb21e0e6b66e8833cd12
BLAKE2b-256 3a4b54207e8c60f90227a3316c1d16acfba775521a5182fd56594b672e728cef

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 42.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for argon2_cffi-20.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9dfd5197852530294ecb5795c97a823839258dfd5eb9420233c7cfedec2058f2
MD5 998c28adf621b77eb99c86d3ae6460bf
BLAKE2b-256 852087fb7e73a8020410210e6f49daecdbda85f710cb428c970e06d34cc37f70

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for argon2_cffi-20.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 77e909cc756ef81d6abb60524d259d959bab384832f0c651ed7dcb6e5ccdbb78
MD5 ab8f2653b802d40f0473a01777f2af63
BLAKE2b-256 35cfa963fe123b1ec720a47954051c13fe4b9c7eecc232add29e0d9a8fa5ebe8

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 42.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for argon2_cffi-20.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6678bb047373f52bcff02db8afab0d2a77d83bde61cfecea7c5c62e2335cb203
MD5 7eb9fb700e65feadc8f7b5110859ada3
BLAKE2b-256 a0c6420e3cfb7f162eb51dcfdb1c2d80e5baa522c743487937c17ae0d760dd19

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for argon2_cffi-20.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 18dee20e25e4be86680b178b35ccfc5d495ebd5792cd00781548d50880fee5c5
MD5 237afa60909a105841c92958afa6a667
BLAKE2b-256 8f015bf540905b8f19542167e413f62433c170a7eed3f9d114ec5b640361cf34

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-cp37-abi3-macosx_10_6_intel.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-cp37-abi3-macosx_10_6_intel.whl
  • Upload date:
  • Size: 65.8 kB
  • Tags: CPython 3.7+, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for argon2_cffi-20.1.0-cp37-abi3-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 cc0e028b209a5483b6846053d5fd7165f460a1f14774d79e632e75e7ae64b82b
MD5 85f985e0c1621f4e655fec1dd0d885cf
BLAKE2b-256 7e9e286ba05f5ed9250746f562c6468e83895fa0eec0d91131c3ff701d9b6c8f

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 42.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for argon2_cffi-20.1.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 da7f0445b71db6d3a72462e04f36544b0de871289b0bc8a7cc87c0f5ec7079fa
MD5 ab47ea1139438e372c1893c0705f9e51
BLAKE2b-256 751385d8e6291099f72a72f5e2682f758a3059b4ce7c1e30a32236a3f094d4c2

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for argon2_cffi-20.1.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ba7209b608945b889457f949cc04c8e762bed4fe3fec88ae9a6b7765ae82e496
MD5 d82d97f1588e4d41f28a26fedd509647
BLAKE2b-256 c476a17b867c0d3005f3f27ae8caeda1fb8b8749d66ba6603fff7f3db6aaa688

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 41.3 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for argon2_cffi-20.1.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 392c3c2ef91d12da510cfb6f9bae52512a4552573a9e27600bdb800e05905d2b
MD5 c4ab2a5cb621974c5f69f742d5bf3e22
BLAKE2b-256 dba363bf2e600909ef72c0fa6151f4e614cd81659c6c1cc08bee686af2841ad1

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 37.5 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for argon2_cffi-20.1.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 9bee3212ba4f560af397b6d7146848c32a800652301843df06b9e8f68f0f7361
MD5 df26f2c95c207d0ca2a8162dfea38054
BLAKE2b-256 eef01cb74ca8cf9c002a6d6d08b1d6b9d1d74f3930cea577f3db3809325bcf32

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-cp35-abi3-manylinux1_x86_64.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-cp35-abi3-manylinux1_x86_64.whl
  • Upload date:
  • Size: 98.0 kB
  • Tags: CPython 3.5+
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for argon2_cffi-20.1.0-cp35-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b160416adc0f012fb1f12588a5e6954889510f82f698e23ed4f4fa57f12a0647
MD5 f98ccaedcbe6e3876d6e80f743539f76
BLAKE2b-256 e0d75da06217807106ed6d7b4f5ccb8ec5e3f9ec969217faad4b5d1af0b55101

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 101.2 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for argon2_cffi-20.1.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7d455c802727710e9dfa69b74ccaab04568386ca17b0ad36350b622cd34606fe
MD5 406dabe73fda7a58821bfcac25f79c3c
BLAKE2b-256 57450bbce8a69c356043a3c0e1ad0eb0d1ef2387202bd9c8a2d0c218d3137459

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 37.5 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for argon2_cffi-20.1.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 57358570592c46c420300ec94f2ff3b32cbccd10d38bdc12dc6979c4a8484fbc
MD5 e58354e80a3dab733e1a311f36249e14
BLAKE2b-256 5704eb46235abac45b9467af4998d934a3b39963b0044770f1c8db9e26567438

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 35.7 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for argon2_cffi-20.1.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 0bf066bc049332489bb2d75f69216416329d9dc65deee127152caeb16e5ce7d5
MD5 df7d2625f6528071040294663c9437ce
BLAKE2b-256 bc3ef44df6779760b53d60e2b1530f58f5d4bbbd8643fae5b8e4611c6d263e25

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 101.2 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for argon2_cffi-20.1.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 05a8ac07c7026542377e38389638a8a1e9b78f1cd8439cd7493b39f08dd75fbf
MD5 bcbd800ffb7a866a613acb3d0fad4c31
BLAKE2b-256 b8d5658999bf11e9baf8cd5e280270fab76cb73dab08ed1c70f497b7b168fe7a

See more details on using hashes here.

File details

Details for the file argon2_cffi-20.1.0-cp27-cp27m-macosx_10_6_intel.whl.

File metadata

  • Download URL: argon2_cffi-20.1.0-cp27-cp27m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 65.7 kB
  • Tags: CPython 2.7m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for argon2_cffi-20.1.0-cp27-cp27m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 6ea92c980586931a816d61e4faf6c192b4abce89aa767ff6581e6ddc985ed003
MD5 34a324c094a8025e1a84d214a8ad7ede
BLAKE2b-256 531d5eceee11c0d06bdb332e3f62e19d609528e3917a4d0a1ffe45d3c853637a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page