Skip to main content

Modern password hashing for your software and your servers

Project description

bcrypt

Latest Version https://github.com/pyca/bcrypt/workflows/CI/badge.svg?branch=main

Acceptable password hashing for your software and your servers (but you should really use argon2id or scrypt)

Installation

To install bcrypt, simply:

$ pip install bcrypt

Note that bcrypt should build very easily on Linux provided you have a C compiler and a Rust compiler (the minimum supported Rust version is 1.56.0).

For Debian and Ubuntu, the following command will ensure that the required dependencies are installed:

$ sudo apt-get install build-essential cargo

For Fedora and RHEL-derivatives, the following command will ensure that the required dependencies are installed:

$ sudo yum install gcc cargo

For Alpine, the following command will ensure that the required dependencies are installed:

$ apk add --update musl-dev gcc cargo

Alternatives

While bcrypt remains an acceptable choice for password storage, depending on your specific use case you may also want to consider using scrypt (either via standard library or cryptography) or argon2id via argon2_cffi.

Changelog

Unreleased

  • Dropped support for Python 3.7.

  • We now support free-threaded Python 3.13.

  • We now support PyPy 3.11.

  • We now publish wheels for free-threaded Python 3.13, for PyPy 3.11 on manylinux, and for ARMv7l on manylinux.

4.2.1

  • Bump Rust dependency versions - this should resolve crashes on Python 3.13 free-threaded builds.

  • We no longer build manylinux wheels for PyPy 3.9.

4.2.0

  • Bump Rust dependency versions

  • Removed the BCRYPT_ALLOW_RUST_163 environment variable.

4.1.3

  • Bump Rust dependency versions

4.1.2

  • Publish both py37 and py39 wheels. This should resolve some errors relating to initializing a module multiple times per process.

4.1.1

  • Fixed the type signature on the kdf method.

  • Fixed packaging bug on Windows.

  • Fixed incompatibility with passlib package detection assumptions.

4.1.0

  • Dropped support for Python 3.6.

  • Bumped MSRV to 1.64. (Note: Rust 1.63 can be used by setting the BCRYPT_ALLOW_RUST_163 environment variable)

4.0.1

  • We now build PyPy manylinux wheels.

  • Fixed a bug where passing an invalid salt to checkpw could result in a pyo3_runtime.PanicException. It now correctly raises a ValueError.

4.0.0

  • bcrypt is now implemented in Rust. Users building from source will need to have a Rust compiler available. Nothing will change for users downloading wheels.

  • We no longer ship manylinux2010 wheels. Users should upgrade to the latest pip to ensure this doesn’t cause issues downloading wheels on their platform. We now ship manylinux_2_28 wheels for users on new enough platforms.

  • NUL bytes are now allowed in inputs.

3.2.2

  • Fixed packaging of py.typed files in wheels so that mypy works.

3.2.1

  • Added support for compilation on z/OS

  • The next release of bcrypt with be 4.0 and it will require Rust at compile time, for users building from source. There will be no additional requirement for users who are installing from wheels. Users on most platforms will be able to obtain a wheel by making sure they have an up to date pip. The minimum supported Rust version will be 1.56.0.

  • This will be the final release for which we ship manylinux2010 wheels. Going forward the minimum supported manylinux ABI for our wheels will be manylinux2014. The vast majority of users will continue to receive manylinux wheels provided they have an up to date pip.

3.2.0

  • Added typehints for library functions.

  • Dropped support for Python versions less than 3.6 (2.7, 3.4, 3.5).

  • Shipped abi3 Windows wheels (requires pip >= 20).

3.1.7

  • Set a setuptools lower bound for PEP517 wheel building.

  • We no longer distribute 32-bit manylinux1 wheels. Continuing to produce them was a maintenance burden.

3.1.6

  • Added support for compilation on Haiku.

3.1.5

  • Added support for compilation on AIX.

  • Dropped Python 2.6 and 3.3 support.

  • Switched to using abi3 wheels for Python 3. If you are not getting a wheel on a compatible platform please upgrade your pip version.

3.1.4

  • Fixed compilation with mingw and on illumos.

3.1.3

  • Fixed a compilation issue on Solaris.

  • Added a warning when using too few rounds with kdf.

3.1.2

  • Fixed a compile issue affecting big endian platforms.

  • Fixed invalid escape sequence warnings on Python 3.6.

  • Fixed building in non-UTF8 environments on Python 2.

3.1.1

  • Resolved a UserWarning when used with cffi 1.8.3.

3.1.0

  • Added support for checkpw, a convenience method for verifying a password.

  • Ensure that you get a $2y$ hash when you input a $2y$ salt.

  • Fixed a regression where $2a hashes were vulnerable to a wraparound bug.

  • Fixed compilation under Alpine Linux.

3.0.0

  • Switched the C backend to code obtained from the OpenBSD project rather than openwall.

  • Added support for bcrypt_pbkdf via the kdf function.

2.0.0

  • Added support for an adjustible prefix when calling gensalt.

  • Switched to CFFI 1.0+

Usage

Password Hashing

Hashing and then later checking that a password matches the previous hashed password is very simple:

>>> import bcrypt
>>> password = b"super secret password"
>>> # Hash a password for the first time, with a randomly-generated salt
>>> hashed = bcrypt.hashpw(password, bcrypt.gensalt())
>>> # Check that an unhashed password matches one that has previously been
>>> # hashed
>>> if bcrypt.checkpw(password, hashed):
...     print("It Matches!")
... else:
...     print("It Does not Match :(")

KDF

As of 3.0.0 bcrypt now offers a kdf function which does bcrypt_pbkdf. This KDF is used in OpenSSH’s newer encrypted private key format.

>>> import bcrypt
>>> key = bcrypt.kdf(
...     password=b'password',
...     salt=b'salt',
...     desired_key_bytes=32,
...     rounds=100)

Adjustable Work Factor

One of bcrypt’s features is an adjustable logarithmic work factor. To adjust the work factor merely pass the desired number of rounds to bcrypt.gensalt(rounds=12) which defaults to 12):

>>> import bcrypt
>>> password = b"super secret password"
>>> # Hash a password for the first time, with a certain number of rounds
>>> hashed = bcrypt.hashpw(password, bcrypt.gensalt(14))
>>> # Check that a unhashed password matches one that has previously been
>>> #   hashed
>>> if bcrypt.checkpw(password, hashed):
...     print("It Matches!")
... else:
...     print("It Does not Match :(")

Adjustable Prefix

Another one of bcrypt’s features is an adjustable prefix to let you define what libraries you’ll remain compatible with. To adjust this, pass either 2a or 2b (the default) to bcrypt.gensalt(prefix=b"2b") as a bytes object.

As of 3.0.0 the $2y$ prefix is still supported in hashpw but deprecated.

Maximum Password Length

The bcrypt algorithm only handles passwords up to 72 characters, any characters beyond that are ignored. To work around this, a common approach is to hash a password with a cryptographic hash (such as sha256) and then base64 encode it to prevent NULL byte problems before hashing the result with bcrypt:

>>> password = b"an incredibly long password" * 10
>>> hashed = bcrypt.hashpw(
...     base64.b64encode(hashlib.sha256(password).digest()),
...     bcrypt.gensalt()
... )

Compatibility

This library should be compatible with py-bcrypt and it will run on Python 3.8+ (including free-threaded builds), and PyPy 3.

Security

bcrypt follows the same security policy as cryptography, if you identify a vulnerability, we ask you to contact us privately.

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

bcrypt-4.3.0.tar.gz (25.7 kB view details)

Uploaded Source

Built Distributions

bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl (280.1 kB view details)

Uploaded PyPy manylinux: glibc 2.34+ x86-64

bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl (274.7 kB view details)

Uploaded PyPy manylinux: glibc 2.34+ ARM64

bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (280.5 kB view details)

Uploaded PyPy manylinux: glibc 2.28+ x86-64

bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (275.1 kB view details)

Uploaded PyPy manylinux: glibc 2.28+ ARM64

bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_34_x86_64.whl (280.2 kB view details)

Uploaded PyPy manylinux: glibc 2.34+ x86-64

bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_34_aarch64.whl (274.9 kB view details)

Uploaded PyPy manylinux: glibc 2.34+ ARM64

bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl (280.6 kB view details)

Uploaded PyPy manylinux: glibc 2.28+ x86-64

bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (275.4 kB view details)

Uploaded PyPy manylinux: glibc 2.28+ ARM64

bcrypt-4.3.0-cp313-cp313t-win_amd64.whl (147.8 kB view details)

Uploaded CPython 3.13t Windows x86-64

bcrypt-4.3.0-cp313-cp313t-win32.whl (155.3 kB view details)

Uploaded CPython 3.13t Windows x86

bcrypt-4.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl (356.0 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ x86-64

bcrypt-4.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl (335.8 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ARM64

bcrypt-4.3.0-cp313-cp313t-musllinux_1_1_x86_64.whl (309.6 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.1+ x86-64

bcrypt-4.3.0-cp313-cp313t-musllinux_1_1_aarch64.whl (305.2 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.1+ ARM64

bcrypt-4.3.0-cp313-cp313t-manylinux_2_34_x86_64.whl (277.3 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.34+ x86-64

bcrypt-4.3.0-cp313-cp313t-manylinux_2_34_aarch64.whl (272.4 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.34+ ARM64

bcrypt-4.3.0-cp313-cp313t-manylinux_2_28_x86_64.whl (277.8 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.28+ x86-64

bcrypt-4.3.0-cp313-cp313t-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl (289.8 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.28+ ARMv7l manylinux: glibc 2.31+ ARMv7l

bcrypt-4.3.0-cp313-cp313t-manylinux_2_28_aarch64.whl (272.8 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.28+ ARM64

bcrypt-4.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.5 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ x86-64

bcrypt-4.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (272.0 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

bcrypt-4.3.0-cp313-cp313t-macosx_10_12_universal2.whl (483.7 kB view details)

Uploaded CPython 3.13t macOS 10.12+ universal2 (ARM64, x86-64)

bcrypt-4.3.0-cp39-abi3-win_amd64.whl (152.8 kB view details)

Uploaded CPython 3.9+ Windows x86-64

bcrypt-4.3.0-cp39-abi3-win32.whl (160.6 kB view details)

Uploaded CPython 3.9+ Windows x86

bcrypt-4.3.0-cp39-abi3-musllinux_1_2_x86_64.whl (363.1 kB view details)

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

bcrypt-4.3.0-cp39-abi3-musllinux_1_2_aarch64.whl (343.7 kB view details)

Uploaded CPython 3.9+ musllinux: musl 1.2+ ARM64

bcrypt-4.3.0-cp39-abi3-musllinux_1_1_x86_64.whl (316.7 kB view details)

Uploaded CPython 3.9+ musllinux: musl 1.1+ x86-64

bcrypt-4.3.0-cp39-abi3-musllinux_1_1_aarch64.whl (312.9 kB view details)

Uploaded CPython 3.9+ musllinux: musl 1.1+ ARM64

bcrypt-4.3.0-cp39-abi3-manylinux_2_34_x86_64.whl (284.2 kB view details)

Uploaded CPython 3.9+ manylinux: glibc 2.34+ x86-64

bcrypt-4.3.0-cp39-abi3-manylinux_2_34_aarch64.whl (279.2 kB view details)

Uploaded CPython 3.9+ manylinux: glibc 2.34+ ARM64

bcrypt-4.3.0-cp39-abi3-manylinux_2_28_x86_64.whl (284.5 kB view details)

Uploaded CPython 3.9+ manylinux: glibc 2.28+ x86-64

bcrypt-4.3.0-cp39-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl (297.9 kB view details)

Uploaded CPython 3.9+ manylinux: glibc 2.28+ ARMv7l manylinux: glibc 2.31+ ARMv7l

bcrypt-4.3.0-cp39-abi3-manylinux_2_28_aarch64.whl (279.6 kB view details)

Uploaded CPython 3.9+ manylinux: glibc 2.28+ ARM64

bcrypt-4.3.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.3 kB view details)

Uploaded CPython 3.9+ manylinux: glibc 2.17+ x86-64

bcrypt-4.3.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (279.2 kB view details)

Uploaded CPython 3.9+ manylinux: glibc 2.17+ ARM64

bcrypt-4.3.0-cp39-abi3-macosx_10_12_universal2.whl (499.0 kB view details)

Uploaded CPython 3.9+ macOS 10.12+ universal2 (ARM64, x86-64)

bcrypt-4.3.0-cp38-abi3-win_amd64.whl (152.8 kB view details)

Uploaded CPython 3.8+ Windows x86-64

bcrypt-4.3.0-cp38-abi3-win32.whl (160.6 kB view details)

Uploaded CPython 3.8+ Windows x86

bcrypt-4.3.0-cp38-abi3-musllinux_1_2_x86_64.whl (362.9 kB view details)

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

bcrypt-4.3.0-cp38-abi3-musllinux_1_2_aarch64.whl (343.6 kB view details)

Uploaded CPython 3.8+ musllinux: musl 1.2+ ARM64

bcrypt-4.3.0-cp38-abi3-musllinux_1_1_x86_64.whl (316.5 kB view details)

Uploaded CPython 3.8+ musllinux: musl 1.1+ x86-64

bcrypt-4.3.0-cp38-abi3-musllinux_1_1_aarch64.whl (312.7 kB view details)

Uploaded CPython 3.8+ musllinux: musl 1.1+ ARM64

bcrypt-4.3.0-cp38-abi3-manylinux_2_34_x86_64.whl (283.7 kB view details)

Uploaded CPython 3.8+ manylinux: glibc 2.34+ x86-64

bcrypt-4.3.0-cp38-abi3-manylinux_2_34_aarch64.whl (279.2 kB view details)

Uploaded CPython 3.8+ manylinux: glibc 2.34+ ARM64

bcrypt-4.3.0-cp38-abi3-manylinux_2_28_x86_64.whl (284.1 kB view details)

Uploaded CPython 3.8+ manylinux: glibc 2.28+ x86-64

bcrypt-4.3.0-cp38-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl (297.7 kB view details)

Uploaded CPython 3.8+ manylinux: glibc 2.28+ ARMv7l manylinux: glibc 2.31+ ARMv7l

bcrypt-4.3.0-cp38-abi3-manylinux_2_28_aarch64.whl (279.6 kB view details)

Uploaded CPython 3.8+ manylinux: glibc 2.28+ ARM64

bcrypt-4.3.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (283.9 kB view details)

Uploaded CPython 3.8+ manylinux: glibc 2.17+ x86-64

bcrypt-4.3.0-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (279.2 kB view details)

Uploaded CPython 3.8+ manylinux: glibc 2.17+ ARM64

bcrypt-4.3.0-cp38-abi3-macosx_10_12_universal2.whl (498.0 kB view details)

Uploaded CPython 3.8+ macOS 10.12+ universal2 (ARM64, x86-64)

File details

Details for the file bcrypt-4.3.0.tar.gz.

File metadata

  • Download URL: bcrypt-4.3.0.tar.gz
  • Upload date:
  • Size: 25.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bcrypt-4.3.0.tar.gz
Algorithm Hash digest
SHA256 3a3fd2204178b6d2adcf09cb4f6426ffef54762577a7c9b54c159008cb288c18
MD5 bb9a8674f53c3b61ce3f730811d57f38
BLAKE2b-256 bb5d6d7433e0f3cd46ce0b43cd65e1db465ea024dbb8216fb2404e919c2ad77b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0.tar.gz:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 57967b7a28d855313a963aaea51bf6df89f833db4320da458e5b3c5ab6d4c938
MD5 fef27bee495c8b0e6ff8f7bcacca04f1
BLAKE2b-256 631347bba97924ebe86a62ef83dc75b7c8a881d53c535f83e2c54c4bd701e05c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 55a935b8e9a1d2def0626c4269db3fcd26728cbff1e84f0341465c31c4ee56d8
MD5 53158f175d9fd496664a4928f28af4b9
BLAKE2b-256 aa7305687a9ef89edebdd8ad7474c16d8af685eb4591c3c38300bb6aad4f0076

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bdc6a24e754a555d7316fa4774e64c6c3997d27ed2d1964d55920c7c227bc4ce
MD5 81353a78b176b2d90f73cb42837ad697
BLAKE2b-256 944119be9fe17e4ffc5d10b7b67f10e459fc4eee6ffe9056a88de511920cfd8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a839320bf27d474e52ef8cb16449bb2ce0ba03ca9f44daba6d93fa1d8828e48a
MD5 9bb082253ad646a2145ca2d32de9c66d
BLAKE2b-256 4cb11289e21d710496b88340369137cc4c5f6ee036401190ea116a7b4ae6d32a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 b6354d3760fcd31994a14c89659dee887f1351a06e5dac3c1142307172a79f90
MD5 bfe73a3d75b445ed9a6acfb7507fe902
BLAKE2b-256 dfc4ae6921088adf1e37f2a3a6a688e72e7d9e45fdd3ae5e0bc931870c1ebbda

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_34_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 b693dbb82b3c27a1604a3dff5bfc5418a7e6a781bb795288141e5f80cf3a3492
MD5 8bf9cca0a8da4c5dbc4b26d1d7a28a68
BLAKE2b-256 35187d9dc16a3a4d530d0a9b845160e9e5d8eb4f00483e05d44bb4116a1861da

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_34_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 107d53b5c67e0bbc3f03ebf5b030e0403d24dda980f8e244795335ba7b4a027d
MD5 dc3063a5b3af26582d9a4fd6326f119d
BLAKE2b-256 104ff77509f08bdff8806ecc4dc472b6e187c946c730565a7470db772d25df70

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c950d682f0952bafcceaf709761da0a32a942272fad381081b51096ffa46cea1
MD5 26bb396c3eb8c72af276f8cd0c36299f
BLAKE2b-256 552d0c7e5ab0524bf1a443e34cdd3926ec6f5879889b2f3c32b2f5074e99ed53

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: bcrypt-4.3.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 147.8 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bcrypt-4.3.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 5c1949bf259a388863ced887c7861da1df681cb2388645766c89fdfd9004c669
MD5 68ea236b314ff85a2c4e36da155e80b8
BLAKE2b-256 6d5245d969fcff6b5577c2bf17098dc36269b4c02197d551371c023130c0f890

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp313-cp313t-win_amd64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp313-cp313t-win32.whl.

File metadata

  • Download URL: bcrypt-4.3.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 155.3 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bcrypt-4.3.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 7a4be4cbf241afee43f1c3969b9103a41b40bcb3a3f467ab19f891d9bc4642e4
MD5 ebc1977c509cbcb975c79cd1db01a86d
BLAKE2b-256 aadd20372a0579dd915dfc3b1cd4943b3bca431866fcb1dfdfd7518c3caddea6

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp313-cp313t-win32.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ef6630e0ec01376f59a006dc72918b1bf436c3b571b80fa1968d775fa02fe7d
MD5 3756f156b3322836d2ccc26d0d99f6a3
BLAKE2b-256 001bb324030c706711c99769988fcb694b3cb23f247ad39a7823a78e361bdbb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b8d62290ebefd49ee0b3ce7500f5dbdcf13b81402c05f6dafab9a1e1b27212f
MD5 42251ff196d93657a6edefbe9bb7d7ce
BLAKE2b-256 5f1f99f65edb09e6c935232ba0430c8c13bb98cb3194b6d636e61d93fe60ac59

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp313-cp313t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0e30e5e67aed0187a1764911af023043b4542e70a7461ad20e837e94d23e1d6c
MD5 0134094ecf16a5de906065013e465249
BLAKE2b-256 c7152b37bc07d6ce27cc94e5b10fd5058900eb8fb11642300e932c8c82e25c4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp313-cp313t-musllinux_1_1_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp313-cp313t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 335a420cfd63fc5bc27308e929bee231c15c85cc4c496610ffb17923abf7f231
MD5 15e1767fcd03008fe03164ac8b725262
BLAKE2b-256 b3a34fc5255e60486466c389e28c12579d2829b28a527360e9430b4041df4cf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp313-cp313t-musllinux_1_1_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp313-cp313t-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp313-cp313t-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 5bd3cca1f2aa5dbcf39e2aa13dd094ea181f48959e1071265de49cc2b82525af
MD5 c3d498848a1c5ad761fde5fefb26550b
BLAKE2b-256 de6ad5026520843490cfc8135d03012a413e4532a400e471e6188b01b2de853f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp313-cp313t-manylinux_2_34_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp313-cp313t-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp313-cp313t-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 12fa6ce40cde3f0b899729dbd7d5e8811cb892d31b6f7d0334a1f37748b789fd
MD5 6428c1dad3bdf8126a70a878748ffde8
BLAKE2b-256 e438cde58089492e55ac4ef6c49fea7027600c84fd23f7520c62118c03b4625e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp313-cp313t-manylinux_2_34_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp313-cp313t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0142b2cb84a009f8452c8c5a33ace5e3dfec4159e7735f5afe9a4d50a8ea722d
MD5 c950018d9436de3723f741ef6cfd538e
BLAKE2b-256 dc24d0fb023788afe9e83cc118895a9f6c57e1044e7e1672f045e46733421fe6

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp313-cp313t-manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp313-cp313t-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp313-cp313t-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 74a8d21a09f5e025a9a23e7c0fd2c7fe8e7503e4d356c0a2c1486ba010619f09
MD5 d0e117e1908f54dd9fab745a67a824d1
BLAKE2b-256 13b70b289506a3f3598c2ae2bdfa0ea66969812ed200264e3f61df77753eee6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp313-cp313t-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0042b2e342e9ae3d2ed22727c1262f76cc4f345683b5c1715f0250cf4277294f
MD5 1362d0b4d08f96f2e6c51e21b56881c2
BLAKE2b-256 d71c794feb2ecf22fe73dcfb697ea7057f632061faceb7dcf0f155f3443b4d79

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59e1aa0e2cd871b08ca146ed08445038f42ff75968c7ae50d2fdd7860ade2180
MD5 182eb6963126b1e19b94af2fb6e2ed75
BLAKE2b-256 371fc55ed8dbe994b1d088309e366749633c9eb90d139af3c0a50c102ba68a1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5eeac541cefd0bb887a371ef73c62c3cd78535e4887b310626036a7c0a817bb
MD5 830ab651c65942e9cb41a6b415e39d98
BLAKE2b-256 a1e258ff6e2a22eca2e2cff5370ae56dba29d70b1ea6fc08ee9115c3ae367795

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp313-cp313t-macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp313-cp313t-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f01e060f14b6b57bbb72fc5b4a83ac21c443c9a2ee708e04a10e9192f90a6281
MD5 961158b6747bb89062d9f594bc08e1c8
BLAKE2b-256 bf2c3d44e853d1fe969d229bd58d39ae6902b3d924af0e2b5a60d17d4b809ded

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp313-cp313t-macosx_10_12_universal2.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp39-abi3-win_amd64.whl.

File metadata

  • Download URL: bcrypt-4.3.0-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 152.8 kB
  • Tags: CPython 3.9+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bcrypt-4.3.0-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 e53e074b120f2877a35cc6c736b8eb161377caae8925c17688bd46ba56daaa5b
MD5 e1b06d953cb4483b14857ac1366ed4c4
BLAKE2b-256 a9cf45fb5261ece3e6b9817d3d82b2f343a505fd58674a92577923bc500bd1aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp39-abi3-win_amd64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp39-abi3-win32.whl.

File metadata

  • Download URL: bcrypt-4.3.0-cp39-abi3-win32.whl
  • Upload date:
  • Size: 160.6 kB
  • Tags: CPython 3.9+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bcrypt-4.3.0-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 b4d4e57f0a63fd0b358eb765063ff661328f69a04494427265950c71b992a39a
MD5 dcd9a3afa41e229534365e954d75d033
BLAKE2b-256 119912f6a58eca6dea4be992d6c681b7ec9410a1d9f5cf368c61437e31daa879

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp39-abi3-win32.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp39-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79e70b8342a33b52b55d93b3a59223a844962bef479f6a0ea318ebbcadf71505
MD5 0da1601a2319ab33fb4d06edc0b78c49
BLAKE2b-256 40f271b4ed65ce38982ecdda0ff20c3ad1b15e71949c78b2c053df53629ce940

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp39-abi3-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp39-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e965a9c1e9a393b8005031ff52583cedc15b7884fce7deb8b0346388837d6cfe
MD5 2121fcfc1f9c3030b2886106597ca861
BLAKE2b-256 0ca19898ea3faac0b156d457fd73a3cb9c2855c6fd063e44b8522925cdd8ce46

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp39-abi3-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp39-abi3-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp39-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6fb1fd3ab08c0cbc6826a2e0447610c6f09e983a281b919ed721ad32236b8b23
MD5 ed02c1b06de782bad6d1ffadcff5c63e
BLAKE2b-256 dc622a871837c0bb6ab0c9a88bf54de0fc021a6a08832d4ea313ed92a669d437

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp39-abi3-musllinux_1_1_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp39-abi3-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp39-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 17a854d9a7a476a89dcef6c8bd119ad23e0f82557afbd2c442777a16408e614f
MD5 4480dc56e957b615c6127ed064a714f5
BLAKE2b-256 1c0a644b2731194b0d7646f3210dc4d80c7fee3ecb3a1f791a6e0ae6bb8684e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp39-abi3-musllinux_1_1_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp39-abi3-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp39-abi3-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 531457e5c839d8caea9b589a1bcfe3756b0547d7814e9ce3d437f17da75c32b0
MD5 be4ae0f46b03aed8cf7d2c633a43601d
BLAKE2b-256 dc7f1e36379e169a7df3a14a1c160a49b7b918600a6008de43ff20d479e6f4b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp39-abi3-manylinux_2_34_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp39-abi3-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp39-abi3-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 3004df1b323d10021fda07a813fd33e0fd57bef0e9a480bb143877f6cba996fe
MD5 4e83928d38fe0f613fe25b8316152fd3
BLAKE2b-256 4d4dc43332dcaaddb7710a8ff5269fcccba97ed3c85987ddaa808db084267b9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp39-abi3-manylinux_2_34_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp39-abi3-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp39-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1e3ffa1365e8702dc48c8b360fef8d7afeca482809c5e45e653af82ccd088c1
MD5 201f7b01e6261a1c183d4b2cb1366833
BLAKE2b-256 cbc68fedca4c2ada1b6e889c52d2943b2f968d3427e5d65f595620ec4c06fa2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp39-abi3-manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp39-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp39-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d9af79d322e735b1fc33404b5765108ae0ff232d4b54666d46730f8ac1a43676
MD5 8da569d03c29206ffaee024344d34af7
BLAKE2b-256 f28762e1e426418204db520f955ffd06f1efd389feca893dad7095bf35612eec

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp39-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp39-abi3-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp39-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 afe327968aaf13fc143a56a3360cb27d4ad0345e34da12c7290f1b00b8fe9a8b
MD5 eadc67627c644bd07d728a13195f96b3
BLAKE2b-256 ab2b698580547a4a4988e415721b71eb45e80c879f0fb04a62da131f45987b96

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp39-abi3-manylinux_2_28_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6746e6fec103fcd509b96bacdfdaa2fbde9a553245dbada284435173a6f1aef
MD5 51fe6b814fc9a661ed2983ee0abe407e
BLAKE2b-256 9b5d805ef1a749c965c46b28285dfb5cd272a7ed9fa971f970435a5133250182

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08bacc884fd302b611226c01014eca277d48f0a05187666bca23aac0dad6fe24
MD5 ee5b80255c6a540fbce20dab08ed0f22
BLAKE2b-256 ced4755ce19b6743394787fbd7dff6bf271b27ee9b5912a97242e3caf125885b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp39-abi3-macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp39-abi3-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 0d3efb1157edebfd9128e4e46e2ac1a64e0c1fe46fb023158a407c7892b0f8c3
MD5 832250d97f0e8386d2868bd022a6c1bc
BLAKE2b-256 6ec13fa0e9e4e0bfd3fd77eb8b52ec198fd6e1fd7e9402052e43f23483f956dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp39-abi3-macosx_10_12_universal2.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp38-abi3-win_amd64.whl.

File metadata

  • Download URL: bcrypt-4.3.0-cp38-abi3-win_amd64.whl
  • Upload date:
  • Size: 152.8 kB
  • Tags: CPython 3.8+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bcrypt-4.3.0-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 584027857bc2843772114717a7490a37f68da563b3620f78a849bcb54dc11e62
MD5 42e8870e0c45a1cbf6be7b51ab576702
BLAKE2b-256 2907416f0b99f7f3997c69815365babbc2e8754181a4b1899d921b3c7d5b6f12

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp38-abi3-win_amd64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp38-abi3-win32.whl.

File metadata

  • Download URL: bcrypt-4.3.0-cp38-abi3-win32.whl
  • Upload date:
  • Size: 160.6 kB
  • Tags: CPython 3.8+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bcrypt-4.3.0-cp38-abi3-win32.whl
Algorithm Hash digest
SHA256 67a561c4d9fb9465ec866177e7aebcad08fe23aaf6fbd692a6fab69088abfc51
MD5 5012a7d0c53b763240915a44ce6d0e1d
BLAKE2b-256 a9978d3118efd8354c555a3422d544163f40d9f236be5b96c714086463f11699

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp38-abi3-win32.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp38-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp38-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50e6e80a4bfd23a25f5c05b90167c19030cf9f87930f7cb2eacb99f45d1c3304
MD5 467d0c55240de0f91c4568d7c161517a
BLAKE2b-256 e3b8e970ecc6d7e355c0d892b7f733480f4aa8509f99b33e71550242cf0b7e63

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp38-abi3-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp38-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp38-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33752b1ba962ee793fa2b6321404bf20011fe45b9afd2a842139de3011898fef
MD5 fbd81d144518e0e07bddf7864460db12
BLAKE2b-256 dccf7cf3a05b66ce466cfb575dbbda39718d45a609daa78500f57fa9f36fa3c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp38-abi3-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp38-abi3-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp38-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 41261d64150858eeb5ff43c753c4b216991e0ae16614a308a15d909503617732
MD5 6a09ba0432d3e2de4be8e89eb05a847e
BLAKE2b-256 27fb910d3a1caa2d249b6040a5caf9f9866c52114d51523ac2fb47578a27faee

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp38-abi3-musllinux_1_1_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp38-abi3-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp38-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 191354ebfe305e84f344c5964c7cd5f924a3bfc5d405c75ad07f232b6dffb49f
MD5 78059c23c7b65d2804bea2fd45ddc46e
BLAKE2b-256 498b70671c3ce9c0fca4a6cc3cc6ccbaa7e948875a2e62cbd146e04a4011899c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp38-abi3-musllinux_1_1_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp38-abi3-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp38-abi3-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 97eea7408db3a5bcce4a55d13245ab3fa566e23b4c67cd227062bb49e26c585d
MD5 42b695879b7ffff77c78c419c76c4f1a
BLAKE2b-256 394846f623f1b0c7dc2e5de0b8af5e6f5ac4cc26408ac33f3d424e5ad8da4a90

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp38-abi3-manylinux_2_34_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp38-abi3-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp38-abi3-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 beeefe437218a65322fbd0069eb437e7c98137e08f22c4660ac2dc795c31f8bb
MD5 12cff7b0296068ee348e88aa86e56f81
BLAKE2b-256 62e6baff635a4f2c42e8788fe1b1633911c38551ecca9a749d1052d296329da6

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp38-abi3-manylinux_2_34_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp38-abi3-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp38-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 62f26585e8b219cdc909b6a0069efc5e4267e25d4a3770a364ac58024f62a761
MD5 2ae7946e826427cac423748fd32722f3
BLAKE2b-256 50b86294eb84a3fef3b67c69b4470fcdd5326676806bf2519cda79331ab3c3a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp38-abi3-manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp38-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp38-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7c03296b85cb87db865d91da79bf63d5609284fc0cab9472fdd8367bbd830753
MD5 4323a62123e3c99ee352a7fda18c2c1f
BLAKE2b-256 6d64e042fc8262e971347d9230d9abbe70d68b0a549acd8611c83cebd3eaec67

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp38-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp38-abi3-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp38-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 842d08d75d9fe9fb94b18b071090220697f9f184d4547179b60734846461ed59
MD5 6e3399d4807f7bf552c059286f4e8472
BLAKE2b-256 be217dbaf3fa1745cb63f776bb046e481fbababd7d344c5324eab47f5ca92dd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp38-abi3-manylinux_2_28_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e36506d001e93bffe59754397572f21bb5dc7c83f54454c990c74a468cd589e
MD5 c3ab836e89d8d2768d44563e75325f8d
BLAKE2b-256 295b4547d5c49b85f0337c13929f2ccbe08b7283069eea3550a457914fc078aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 864f8f19adbe13b7de11ba15d85d4a428c7e2f344bac110f667676a0ff84924b
MD5 c29aabd935a227c5ffeadd0fc9bce0a7
BLAKE2b-256 b88c252a1edc598dc1ce57905be173328eda073083826955ee3c97c7ff5ba584

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

File details

Details for the file bcrypt-4.3.0-cp38-abi3-macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for bcrypt-4.3.0-cp38-abi3-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f81b0ed2639568bf14749112298f9e4e2b28853dab50a8b357e31798686a036d
MD5 7648d1629bfd9b3b53029e193be20448
BLAKE2b-256 11225ada0b9af72b60cbc4c9a399fdde4af0feaa609d27eb0adc61607997a3fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for bcrypt-4.3.0-cp38-abi3-macosx_10_12_universal2.whl:

Publisher: pypi-publish.yml on pyca/bcrypt

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

Supported by

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