Skip to main content

Low-level Python CFFI Bindings for Argon2

License: MIT No AI slop inside. PyPI version

argon2-cffi-bindings provides low-level CFFI bindings to the official implementation of the Argon2 password hashing algorithm.

The currently vendored Argon2 commit ID is f57e61e.

[!NOTE] If you want to hash passwords in an application, this package is not for you. Have a look at argon2-cffi with its high-level abstractions!

These bindings have been extracted from argon2-cffi and it remains its main consumer. However, they may be used by other packages that want to use the Argon2 library without dealing with C-related complexities.

Usage

argon2-cffi-bindings is available from PyPI. The provided CFFI bindings are compiled in API mode.

Best effort is given to provide binary wheels for as many platforms as possible.

Building from source requires a C compiler and CMake. If no suitable CMake is found, one is downloaded automatically as part of the build.

Disabling Vendored Code

A copy of Argon2 is vendored and used by default, but can be disabled if argon2-cffi-bindings is installed using:

$ env ARGON2_CFFI_USE_SYSTEM=1 \
  python -Im pip install --no-binary=argon2-cffi-bindings argon2-cffi-bindings

Overriding Automatic SSE2 Detection

Usually the build process tries to guess whether or not it should use SSE2-optimized code (see CMakeLists.txt for details). This can go wrong and is problematic for cross-compiling.

Therefore you can use the ARGON2_CFFI_USE_SSE2 environment variable to control the process:

  • If you set it to 1, argon2-cffi-bindings will build with SSE2 support.
  • If you set it to 0, argon2-cffi-bindings will build without SSE2 support.
  • If you set it to anything else, it will be ignored and argon2-cffi-bindings will try to guess.

However, if our heuristics fail you, we would welcome a bug report.

Python API

Since this package is intended to be an implementation detail, it uses a private module name to prevent your users from using it by accident.

Therefore you have to import the symbols from _argon2_cffi_bindings:

from _argon2_cffi_bindings import ffi, lib

Please refer to cffi documentation on how to use the ffi and lib objects.

The list of symbols that are provided can be found in the _ffi.cdef.txt file.

Project Information

Credits & License

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

The development is kindly supported by Variomedia AG and all my amazing GitHub Sponsors.

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

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

Vendored Code

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.

argon2-cffi-bindings for Enterprise

Available as part of the Tidelift Subscription.

The maintainers of argon2-cffi-bindings and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open-source packages you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact packages you use.

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_bindings-26.1.0.tar.gz (1.8 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

argon2_cffi_bindings-26.1.0-pp311-pypy311_pp73-win_amd64.whl (23.6 kB view details)

Uploaded PyPyWindows x86-64

argon2_cffi_bindings-26.1.0-pp311-pypy311_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (24.2 kB view details)

Uploaded PyPymanylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

argon2_cffi_bindings-26.1.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (24.9 kB view details)

Uploaded PyPymanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

argon2_cffi_bindings-26.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (23.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

argon2_cffi_bindings-26.1.0-pp310-pypy310_pp73-win_amd64.whl (23.6 kB view details)

Uploaded PyPyWindows x86-64

argon2_cffi_bindings-26.1.0-pp310-pypy310_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (24.2 kB view details)

Uploaded PyPymanylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

argon2_cffi_bindings-26.1.0-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (24.9 kB view details)

Uploaded PyPymanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

argon2_cffi_bindings-26.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (23.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

argon2_cffi_bindings-26.1.0-cp315-cp315t-win_arm64.whl (25.4 kB view details)

Uploaded CPython 3.15tWindows ARM64

argon2_cffi_bindings-26.1.0-cp315-cp315t-win_amd64.whl (26.7 kB view details)

Uploaded CPython 3.15tWindows x86-64

argon2_cffi_bindings-26.1.0-cp315-cp315t-win32.whl (24.9 kB view details)

Uploaded CPython 3.15tWindows x86

argon2_cffi_bindings-26.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl (26.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

argon2_cffi_bindings-26.1.0-cp315-cp315t-musllinux_1_2_riscv64.whl (27.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

argon2_cffi_bindings-26.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl (27.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

argon2_cffi_bindings-26.1.0-cp315-cp315t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (27.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

argon2_cffi_bindings-26.1.0-cp315-cp315t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (26.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

argon2_cffi_bindings-26.1.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (27.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

argon2_cffi_bindings-26.1.0-cp315-cp315t-macosx_11_0_arm64.whl (25.7 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

argon2_cffi_bindings-26.1.0-cp314-cp314t-win_arm64.whl (25.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

argon2_cffi_bindings-26.1.0-cp314-cp314t-win_amd64.whl (26.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

argon2_cffi_bindings-26.1.0-cp314-cp314t-win32.whl (24.9 kB view details)

Uploaded CPython 3.14tWindows x86

argon2_cffi_bindings-26.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (26.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

argon2_cffi_bindings-26.1.0-cp314-cp314t-musllinux_1_2_riscv64.whl (27.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

argon2_cffi_bindings-26.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (27.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

argon2_cffi_bindings-26.1.0-cp314-cp314t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (27.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

argon2_cffi_bindings-26.1.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (26.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

argon2_cffi_bindings-26.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (27.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

argon2_cffi_bindings-26.1.0-cp314-cp314t-macosx_11_0_arm64.whl (25.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

argon2_cffi_bindings-26.1.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (15.4 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

argon2_cffi_bindings-26.1.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl (15.4 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

argon2_cffi_bindings-26.1.0-cp310-abi3-win_arm64.whl (24.5 kB view details)

Uploaded CPython 3.10+Windows ARM64

argon2_cffi_bindings-26.1.0-cp310-abi3-win_amd64.whl (25.7 kB view details)

Uploaded CPython 3.10+Windows x86-64

argon2_cffi_bindings-26.1.0-cp310-abi3-win32.whl (23.9 kB view details)

Uploaded CPython 3.10+Windows x86

argon2_cffi_bindings-26.1.0-cp310-abi3-musllinux_1_2_x86_64.whl (26.8 kB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ x86-64

argon2_cffi_bindings-26.1.0-cp310-abi3-musllinux_1_2_riscv64.whl (27.6 kB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ riscv64

argon2_cffi_bindings-26.1.0-cp310-abi3-musllinux_1_2_aarch64.whl (27.1 kB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ ARM64

argon2_cffi_bindings-26.1.0-cp310-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (27.4 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

argon2_cffi_bindings-26.1.0-cp310-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (26.6 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

argon2_cffi_bindings-26.1.0-cp310-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (27.2 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

argon2_cffi_bindings-26.1.0-cp310-abi3-macosx_11_0_arm64.whl (25.5 kB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

File details

Details for the file argon2_cffi_bindings-26.1.0.tar.gz.

File metadata

  • Download URL: argon2_cffi_bindings-26.1.0.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.14.7

File hashes

Hashes for argon2_cffi_bindings-26.1.0.tar.gz
Algorithm Hash digest
SHA256 63505c71542a44b68b1e38060450fb006404170da375feb31af153e7f9c6205d
MD5 225a602373f12aa59c5ef9592dd024c4
BLAKE2b-256 0b43bb8b6e8708d49a5ab36781333af092d9f483b198a2710d01281204640055

See more details on using hashes here.

File details

Details for the file argon2_cffi_bindings-26.1.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0cc40f7b4050bb93eb67de95d2d759322fc7ce4930b9d645581ecf4913ec651e
MD5 ef4780ae8d37b119d53f0bcda24c5b2f
BLAKE2b-256 a33432109943bace7729233cc4ee78530baa306d8cc3c6501a64ba8cb3b58129

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-pp311-pypy311_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-pp311-pypy311_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b0bcac4d490a237e18cf91f57352920c29f77f2fa39efd0813fb81298bf17ba
MD5 35706716ae0aeb982d9a047a3ec4b2ae
BLAKE2b-256 5b4b9d5919c6cb1f15df7406af0f99b048bd93936f112e3e8f4c8077bc2a9110

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-pp311-pypy311_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 49d525938467d52c923a890153c99087c9d5a937d1f6b585dbdba34ec82e397a
MD5 9e7df02c1cb47c3e893dbd94c1ea1a49
BLAKE2b-256 ae707eb3fe7bf00103cbbb569c51aef150661f22b734a782673a600ff0f52309

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19b562b1de4b9052ef1214a2821c44b6e6f22945daa102c32ae4eff929d8b6d8
MD5 5098454a7667a85368f24d707f28a455
BLAKE2b-256 a0b997f0370f99611b14efd384918613dd5cbda75f28d9bb1b677aacfeaa17df

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1af817e84578ef8b7295ad17de0f9896e4c8520dbf2233c7aa5aa3d487256fc4
MD5 0409c635cf6293abb60cee02a0011bb3
BLAKE2b-256 47f21f8548c44c0036ae8ac1d6197300570b0af8ec120fc10b5bd8188f507376

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-pp310-pypy310_pp73-win_amd64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-pp310-pypy310_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-pp310-pypy310_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b70225b5fd1e0d2ef4f7fd30d24658454535f0924dff0caca5dc08efbbbadfbb
MD5 3ede4e95ab22f7a6c85bc7a70da49bc4
BLAKE2b-256 045092811103e1042af1379741db7fd4a6d0f6e4ee4512e2c50cbd0d344cf0d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-pp310-pypy310_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 242bb0cda2ae3650764fc194593d9ea45fc9e72729acd89778c7cfe184cec2a5
MD5 49458d44b7a447b324685a1c7732e66c
BLAKE2b-256 de6df120f8b4882da540b5e1375a11c85cfe37b3c671cfae1cdac797ea23e76b

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7014ab7e6f5d8511af92544667a0346ea6dfc314ea9a7cad1dba9fdb5c9a6e33
MD5 5fa47e16fec805724b4616c5d6a2a505
BLAKE2b-256 94667ff138b7a61a6ec4eb8ad4a98696498915492a5ffa190e937ca5f2827e0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp315-cp315t-win_arm64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 d157ddfab1e8b21f2f1dedda9c09645d98b5ed0b667b0626be600a345d426440
MD5 4ee9ba82b97dcb0708425e4a87eaab99
BLAKE2b-256 f4ca18b9c8c45fecf34b9100ec6d7946057f14a158f2eaa20ea123a3e82351cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp315-cp315t-win_arm64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 1a0a29ed86960e44eaace7e081bdfab4f08b012fd96ec8edba71e2ad020939e4
MD5 fbe204363f71fbd28b252e2f7eeac3e3
BLAKE2b-256 61c7c3e46068cddffccecb8ad94d71135e9bf62bbc789589e7dfadc7c6f59214

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp315-cp315t-win_amd64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp315-cp315t-win32.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 df612391feca41c44d20118f3b88d1b86419465cd1f5496859f715ca60ec2210
MD5 ecfcac8bb99be429d1ad12d106314af7
BLAKE2b-256 a9020bfc59e781c89acf64c31c388aade9d9d1c1ea38aa1ba1292fe07f607fe9

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp315-cp315t-win32.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 76ae29acace5d33355344612844d588e19deaaba4639d8bb01601e4b1418ef36
MD5 f986058e9bb88c1d2d1868771b71230f
BLAKE2b-256 7d47c108530d9eb86036b78d3af4de28b83b4a2d9a70512bd10ff8e59966aab4

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9bacedc04b0402837586a17f0919e3dfdd95291f441f1f56bd80ec274c2840a1
MD5 8faf70d36325b7781a93dc6c569914b6
BLAKE2b-256 ee0dead6ddc029f91bc9b9390686dad3c808ab08100d348f6266b5f93f8970ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp315-cp315t-musllinux_1_2_riscv64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6376d4b3aca039375ca8bf92f770da0ec424a1ce3a37077a8d3c557411aa56ca
MD5 a11bb0489e55a6f2c1627c3d30c1616b
BLAKE2b-256 8807c26b76debf0998ee08fbe947ab2058ac5de37d4b9d46b06c17abaa6c4ce9

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp315-cp315t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp315-cp315t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c49e853a3bef9dd10329f31f702e7fa9b5c58229ff9c2ff6d069efaf09177c08
MD5 ee08e2148c5fdae31c647bc04df7ec86
BLAKE2b-256 f684ccb003b6f9969820e87656398f4d49c857def71a85ca1588a0e809afd7ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp315-cp315t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp315-cp315t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp315-cp315t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0c3103fcff20183e593459cfea6e012281c0e76ae3ed8b5565ad1b92eac3990
MD5 b4044dfae112fdd83b19270f3c481d46
BLAKE2b-256 c34a85e612787d0796878b3b4f6bd53dcd5484b6fe7b64cc6fc7b6e6a04cf835

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp315-cp315t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ccaf0a46cbb380f1fd102a874e32aa629fd3cb0c0e94f4943fa1f6d5edc5dac6
MD5 0686364e090099fa189bfe3ee22e2729
BLAKE2b-256 83e502015b83e9b05ccb85ff2ced424cf6e83a12d3810bc7f66d679a92b69ffb

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d98e33bd8bd67d7206c124e200bf2229c4cfa8c9c19f7b44a897f0fc71837eb
MD5 0fa5b48274de8a72a16f659e6284548b
BLAKE2b-256 66cb214092c39c4dbcb72cf98b12234ddac2221f8fe2c0acf29c6a70fa83be53

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 6ab674f668d5962a3a4136ae0812519b0f1586874263723a32181d60d64137e1
MD5 e89f70cc47c86d921d55c766864aaca5
BLAKE2b-256 a9d1095d95eaf2ed1d9f77268cf3291bde148c6cd56121f8db2c74c1ba618a0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp314-cp314t-win_arm64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2b741888c93147444fdfc851abd81cc207f37f7f7da42062a00deb3888e57da8
MD5 4434feeb014a0b74bd1eb9b9e748947c
BLAKE2b-256 f142d8b6810abd9b1bd2f47ebbccf460da59c9f32e94888bea4f7b137d998797

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 4f84cdd868978d7b7350a566c254042d44216d9e37f241f3a6d3b1dfebeede35
MD5 3969de65de24b5a0cbb8175fa8dea0ba
BLAKE2b-256 3bcd96bfd37434cc0a848a9066c291d84b28846c4c9ea289ed9866b1164d622b

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp314-cp314t-win32.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19423e5d7ac1cc354baab59eaabf18db2ec04ef6593b5abe5a34f323c4a8f87a
MD5 e2518df11059bde2cef62e9377203ef9
BLAKE2b-256 714778f4dd96f7411339f723b96fe24039c1bd5835102b8a5ba71ac4ec712ac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 62ff20cd130c956c7c9144d5fe35228f98b51c579b2439e988b27ef93e16c02a
MD5 02dd9dd902e40006bb6fbf14df99d7cb
BLAKE2b-256 0b39d4be4577e178b2397aa5b5575c8a309bf0da2afe05fe0c72c8f398662d63

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 061a6919145bbf282ebf1f9c59d3135d4833c25313c8595c0d68cf7712ddfce2
MD5 2389329d5899507b90f4ed16fb989eb1
BLAKE2b-256 e6313a18e31406d8694b4d6a31573c3e572fff6bed318bb744453eb653766d22

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp314-cp314t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp314-cp314t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 151dfaad9de753f4af2a7854e707e4784f2acc434340ade64239c5b104b2d605
MD5 cee41e2bf30c564c107e24a1606d9d52
BLAKE2b-256 21c395c07a023691ecd529da9cb6a8f0779e13ebc1bdfaa86d145fdc1c6e7e79

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp314-cp314t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a4e68eed961a8de6928d1c17ff3dc2a547e0e923c17f8f1cd79fb7bc9502f98
MD5 59b25e0a836941b36622a8b467af2df8
BLAKE2b-256 a6eef84b28e4afd13d3cac36c1d8fa8c239d2dc2c51cd978d02ee5d5ad98d9bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac82fc756a446b6ccd7139ce70efa9d8bbe541e7ad579a12dcb52764b7175c5f
MD5 4cf5af5a66ca1a7db7f0329f4ce72c35
BLAKE2b-256 a87ebe212c751ab0bcea7f646615f933bf262e8e50b3f7bef32f861d0a2d066b

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28524438cd3e723f25412f63d4fd516ff5bae9ae5aa56acbe2a1404398a0cf31
MD5 020b6ac5271b746533087c52d4951418
BLAKE2b-256 910ac25af768f6b75a5a71e31207f87c540656b2808c015260444a22763221ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 db0fcd827ca61622a01b220aadfbece01939acf53888f2cb98cd93e9b1e2c97e
MD5 e9e56eecc00409e88d7d985d502766b1
BLAKE2b-256 7638de696045960f5b846d428c0fb6c130ed3da87aac2af209b05c193815404c

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 af11ac37a7c53dc16cb7950a6190851b0870fe218b6c60c0bb7ac355234e3083
MD5 d33299a5df4c7532f2e8211efa0ff75c
BLAKE2b-256 bb5ff652055e18d2627e2eed94c7f31a792127cfe38df786635395d742321674

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp310-abi3-win_arm64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp310-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 f9c4420a7a864fe1b86ce35befc95b8e39fb852493b81cf798671ddc265de638
MD5 f593766e95460a3be4371c55ce584031
BLAKE2b-256 4edbd83cf2af140547f0b9cdaece05b2dc2dcbf991be4667331d073eff771435

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp310-abi3-win_arm64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp310-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 2c36ff87b5dfaa477d0bd51e9d7f6abdae7c8955d2983c97419085d842154b3e
MD5 7a95b01d82aa0da24f2b115dd2e89151
BLAKE2b-256 6d3a0cc14a05810e6add9bce5e87693334baa2222de5f647fa31781885b6573f

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp310-abi3-win_amd64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp310-abi3-win32.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp310-abi3-win32.whl
Algorithm Hash digest
SHA256 a86c069c91a747a2c4e5c51473590aeb48172fff9b2130d23729a42d98665ecb
MD5 19466ff14f1af50f3bfbbf7f10405540
BLAKE2b-256 e910960d0ee93d4897741bcaf4799c697dae2d81499f66fd1ed042a7dd54c1f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp310-abi3-win32.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp310-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp310-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffff613aaa9ce6236766e2fc6dc560bb5abde7a2e2416e3db1f9ae395a2b4dd4
MD5 fd130453866e1735056d65a78a8c9f9e
BLAKE2b-256 482f7ee62a6e79f9309f9d9982d301b22a00010adb580c05c8109b94d7b33de0

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp310-abi3-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp310-abi3-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp310-abi3-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 224865cbbcb7a2bd1356741dff12b0134df726b6d44bb7b500df8e303cbd9e81
MD5 2609805e46a01bccb8a1ebb8947d78e1
BLAKE2b-256 7e1bc8de358af07b1c490e0fcb863ef98e46ddb486e45567aca5a60bd68d9daa

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp310-abi3-musllinux_1_2_riscv64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp310-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp310-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34b7d9c24a4165a2c61cc8ae11d44d48c9ce2830fb536cb7914e11fdd9962728
MD5 fa6e38c4249127211579a2c9989d47b0
BLAKE2b-256 b381b4a20d4902af7f796390bf9245ff83c5217dfa7367efa1d14986956c482b

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp310-abi3-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp310-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp310-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d88e5f7e60f28ae0b0cc6b2f16c43e87cd642a196a86f85e0d8bb6fe016fc16d
MD5 ee90bda8baf18d748f5c9ec422dfd00f
BLAKE2b-256 f4b5a14dcc592652347dad23ee93b278a4da5d2a25c9ed3ebd10d68eea823a4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp310-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp310-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp310-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 27f1821903e2ceadcb88ec2b45ef190897b7682449c772f4d9b53e42c520cf29
MD5 af0c7ec85047c0a1ce2737f4a2a24991
BLAKE2b-256 6f865363df11b86d02cf3662208e7406496327649cc90eb365bf6f4e8a54a41f

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp310-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp310-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp310-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78de2d65e0b9ea7ce9d1b1c3e87297b2d7305a02c266ee2a2d6910daddd7ee69
MD5 f74aee0ce313d49074a2940b66410c61
BLAKE2b-256 7ee4ad91d8297638aa2258aad4501c306aca99480dfe76ccd638173fa3702db9

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp310-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argon2_cffi_bindings-26.1.0-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for argon2_cffi_bindings-26.1.0-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21ca0396fe5ec995dd54431c32698189666f9224810acfa752e50d2bd94d9df2
MD5 3dcff89617ce15fd3da309de389fb27f
BLAKE2b-256 e7d20ae991f1b2181e5be49007c574710a800ad36c2978683addb3e67c474e55

See more details on using hashes here.

Provenance

The following attestation bundles were made for argon2_cffi_bindings-26.1.0-cp310-abi3-macosx_11_0_arm64.whl:

Publisher: wheels.yml on hynek/argon2-cffi-bindings

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

26.1.0 This release

41 files

25.1.0

26 files

21.2.0

21 files

21.1.0

20 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page