5 files were added to this release more than 14 days after its initial publication. Inspect the release files before installing.
bcrypt
Modern password hashing for your software and your servers
Installation
To install bcrypt, simply:
$ pip install bcrypt
Note that bcrypt should build very easily on Linux provided you have a C compiler, headers for Python (if you’re not using pypy), and headers for the libffi libraries available on your system.
For Debian and Ubuntu, the following command will ensure that the required dependencies are installed:
$ sudo apt-get install build-essential libffi-dev python-dev
For Fedora and RHEL-derivatives, the following command will ensure that the required dependencies are installed:
$ sudo yum install gcc libffi-devel python-devel
Changelog
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 2.6+, 3.3+, and PyPy 2.6+.
C Code
This library uses code from OpenBSD.
Security
bcrypt follows the same security policy as cryptography, if you identify a vulnerability, we ask you to contact us privately.
Release files for bcrypt 3.1.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Files added late
5 files were uploaded more than 14 days after the first file in this release.
While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.
We recommend inspecting the release files before installing.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| bcrypt-3.1.4.tar.gz | 42.6 kB | Details |
Built distributions (wheels)
| File | Reset | |||
|---|---|---|---|---|
| bcrypt-3.1.4-cp37-cp37m-win_amd64.whl | CPython 3.7 | CPython 3.7 pymalloc | Windows x86-64 | Details |
| bcrypt-3.1.4-cp37-cp37m-win32.whl | CPython 3.7 | CPython 3.7 pymalloc | Windows x86-32 | Details |
| bcrypt-3.1.4-cp36-cp36m-win_amd64.whl | CPython 3.6 | CPython 3.6 pymalloc | Windows x86-64 | Details |
| bcrypt-3.1.4-cp36-cp36m-win32.whl | CPython 3.6 | CPython 3.6 pymalloc | Windows x86-32 | Details |
| bcrypt-3.1.4-cp36-cp36m-manylinux1_x86_64.whl | CPython 3.6 | CPython 3.6 pymalloc | Linux glibc 2.5+ x86-64 | Details |
| bcrypt-3.1.4-cp36-cp36m-manylinux1_i686.whl | CPython 3.6 | CPython 3.6 pymalloc | Linux glibc 2.5+ x86-32 | Details |
| bcrypt-3.1.4-cp36-cp36m-macosx_10_6_intel.whl | CPython 3.6 | CPython 3.6 pymalloc | macOS 10.6+ Intel (x86-64, i386) | Details |
| bcrypt-3.1.4-cp35-cp35m-win_amd64.whl | CPython 3.5 | CPython 3.5 pymalloc | Windows x86-64 | Details |
| bcrypt-3.1.4-cp35-cp35m-win32.whl | CPython 3.5 | CPython 3.5 pymalloc | Windows x86-32 | Details |
| bcrypt-3.1.4-cp35-cp35m-manylinux1_x86_64.whl | CPython 3.5 | CPython 3.5 pymalloc | Linux glibc 2.5+ x86-64 | Details |
| bcrypt-3.1.4-cp35-cp35m-manylinux1_i686.whl | CPython 3.5 | CPython 3.5 pymalloc | Linux glibc 2.5+ x86-32 | Details |
| bcrypt-3.1.4-cp35-cp35m-macosx_10_6_intel.whl | CPython 3.5 | CPython 3.5 pymalloc | macOS 10.6+ Intel (x86-64, i386) | Details |
| bcrypt-3.1.4-cp34-cp34m-win_amd64.whl | CPython 3.4 | CPython 3.4 pymalloc | Windows x86-64 | Details |
| bcrypt-3.1.4-cp34-cp34m-win32.whl | CPython 3.4 | CPython 3.4 pymalloc | Windows x86-32 | Details |
| bcrypt-3.1.4-cp34-cp34m-manylinux1_x86_64.whl | CPython 3.4 | CPython 3.4 pymalloc | Linux glibc 2.5+ x86-64 | Details |
| bcrypt-3.1.4-cp34-cp34m-manylinux1_i686.whl | CPython 3.4 | CPython 3.4 pymalloc | Linux glibc 2.5+ x86-32 | Details |
| bcrypt-3.1.4-cp34-cp34m-macosx_10_6_intel.whl | CPython 3.4 | CPython 3.4 pymalloc | macOS 10.6+ Intel (x86-64, i386) | Details |
| bcrypt-3.1.4-cp34-abi3-manylinux1_x86_64.whl | CPython 3.4 | abi3 | Linux glibc 2.5+ x86-64 | Details |
| bcrypt-3.1.4-cp34-abi3-manylinux1_i686.whl | CPython 3.4 | abi3 | Linux glibc 2.5+ x86-32 | Details |
| bcrypt-3.1.4-cp34-abi3-macosx_10_6_intel.whl | CPython 3.4 | abi3 | macOS 10.6+ Intel (x86-64, i386) | Details |
| bcrypt-3.1.4-cp33-cp33m-manylinux1_x86_64.whl | CPython 3.3 | CPython 3.3 pymalloc | Linux glibc 2.5+ x86-64 | Details |
| bcrypt-3.1.4-cp33-cp33m-manylinux1_i686.whl | CPython 3.3 | CPython 3.3 pymalloc | Linux glibc 2.5+ x86-32 | Details |
| bcrypt-3.1.4-cp27-cp27mu-manylinux1_x86_64.whl | CPython 2.7 | CPython 2.7 pymalloc wide-unicode | Linux glibc 2.5+ x86-64 | Details |
| bcrypt-3.1.4-cp27-cp27mu-manylinux1_i686.whl | CPython 2.7 | CPython 2.7 pymalloc wide-unicode | Linux glibc 2.5+ x86-32 | Details |
| bcrypt-3.1.4-cp27-cp27m-win_amd64.whl | CPython 2.7 | CPython 2.7 pymalloc | Windows x86-64 | Details |
| bcrypt-3.1.4-cp27-cp27m-win32.whl | CPython 2.7 | CPython 2.7 pymalloc | Windows x86-32 | Details |
| bcrypt-3.1.4-cp27-cp27m-manylinux1_x86_64.whl | CPython 2.7 | CPython 2.7 pymalloc | Linux glibc 2.5+ x86-64 | Details |
| bcrypt-3.1.4-cp27-cp27m-manylinux1_i686.whl | CPython 2.7 | CPython 2.7 pymalloc | Linux glibc 2.5+ x86-32 | Details |
| bcrypt-3.1.4-cp27-cp27m-macosx_10_6_intel.whl | CPython 2.7 | CPython 2.7 pymalloc | macOS 10.6+ Intel (x86-64, i386) | Details |
| bcrypt-3.1.4-cp26-cp26mu-manylinux1_x86_64.whl | CPython 2.6 | CPython 2.6 pymalloc wide-unicode | Linux glibc 2.5+ x86-64 | Details |
| bcrypt-3.1.4-cp26-cp26mu-manylinux1_i686.whl | CPython 2.6 | CPython 2.6 pymalloc wide-unicode | Linux glibc 2.5+ x86-32 | Details |
| bcrypt-3.1.4-cp26-cp26m-manylinux1_x86_64.whl | CPython 2.6 | CPython 2.6 pymalloc | Linux glibc 2.5+ x86-64 | Details |
| bcrypt-3.1.4-cp26-cp26m-manylinux1_i686.whl | CPython 2.6 | CPython 2.6 pymalloc | Linux glibc 2.5+ x86-32 | Details |
Total release size: 1.5 MB
Release files / bcrypt-3.1.4.tar.gz
| Download URL | bcrypt-3.1.4.tar.gz |
|---|---|
| Size | 42.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
67ed1a374c9155ec0840214ce804616de49c3df9c5bc66740687c1c9b1cd9e8d
|
|
BLAKE2b-256 checksum How to use checksums |
f3ecbb6b384b5134fd881b91b6aa3a88ccddaad0103857760711a5ab8c799358
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp37-cp37m-win_amd64.whl
File added late
This file was uploaded more than 14 days after the first file in this release.
While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.
We recommend inspecting the release file before installing.
| Download URL | bcrypt-3.1.4-cp37-cp37m-win_amd64.whl |
|---|---|
| Size | 23.3 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
6b662a5669186439f4f583636c8d6ea77cf92f7cfe6aae8d22edf16c36840574
|
|
BLAKE2b-256 checksum How to use checksums |
5c355cedb29e9d18108fa54fd383f76e086ad8ebab9d1d476e8411445c61cccd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp37-cp37m-win32.whl
File added late
This file was uploaded more than 14 days after the first file in this release.
While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.
We recommend inspecting the release file before installing.
| Download URL | bcrypt-3.1.4-cp37-cp37m-win32.whl |
|---|---|
| Size | 21.8 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
cc2f24dc1c6c88c56248e93f28d439ee4018338567b0bbb490ea26a381a29b1e
|
|
BLAKE2b-256 checksum How to use checksums |
8b60b2b6e88cd5d0305095789c7025a2990b71591e5ebac82f59bea019e2a322
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp36-cp36m-win_amd64.whl
| Download URL | bcrypt-3.1.4-cp36-cp36m-win_amd64.whl |
|---|---|
| Size | 26.2 kB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
054d6e0acaea429e6da3613fcd12d05ee29a531794d96f6ab959f29a39f33391
|
|
BLAKE2b-256 checksum How to use checksums |
4bc0c0550e4b98e0536d3a8b8753b68aa0d3c03af654c43a58328d0bf2c06747
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp36-cp36m-win32.whl
| Download URL | bcrypt-3.1.4-cp36-cp36m-win32.whl |
|---|---|
| Size | 24.7 kB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
9a6fedda73aba1568962f7543a1f586051c54febbc74e87769bad6a4b8587c39
|
|
BLAKE2b-256 checksum How to use checksums |
dae350626ef68eaa00ff21aa36381af902fd90c7a396cc6d1d6fdffb766b7afd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp36-cp36m-manylinux1_x86_64.whl
| Download URL | bcrypt-3.1.4-cp36-cp36m-manylinux1_x86_64.whl |
|---|---|
| Size | 54.3 kB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
49e96267cd9be55a349fd74f9852eb9ae2c427cd7f6455d0f1765d7332292832
|
|
BLAKE2b-256 checksum How to use checksums |
b809905ec939994e2c49dcffff72f823802557f166b3815ea54c1db3671eed42
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp36-cp36m-manylinux1_i686.whl
| Download URL | bcrypt-3.1.4-cp36-cp36m-manylinux1_i686.whl |
|---|---|
| Size | 55.5 kB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
01477981abf74e306e8ee31629a940a5e9138de000c6b0898f7f850461c4a0a5
|
|
BLAKE2b-256 checksum How to use checksums |
121eb0642b1bcc12bbb22855323f0c6afebf52d824b965f8aba051a9f9aea4c5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp36-cp36m-macosx_10_6_intel.whl
| Download URL | bcrypt-3.1.4-cp36-cp36m-macosx_10_6_intel.whl |
|---|---|
| Size | 51.6 kB |
| Tags | CPython 3.6 CPython 3.6 pymalloc macOS 10.6+ Intel (x86-64, i386) |
|
SHA-256 checksum How to use checksums |
0872eeecdf9a429c1420158500eedb323a132bc5bf3339475151c52414729e70
|
|
BLAKE2b-256 checksum How to use checksums |
7e59d48fd712941da1a5d6490964a37bb3de2e526965b6766273f6a7049ee590
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp35-cp35m-win_amd64.whl
| Download URL | bcrypt-3.1.4-cp35-cp35m-win_amd64.whl |
|---|---|
| Size | 26.1 kB |
| Tags | CPython 3.5 CPython 3.5 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
8569844a5d8e1fdde4d7712a05ab2e6061343ac34af6e7e3d7935b2bd1907bfd
|
|
BLAKE2b-256 checksum How to use checksums |
f77dc5a4b87a91a98ce2281169bd3dac334c666f82dfeb138d889720229ba6b6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp35-cp35m-win32.whl
| Download URL | bcrypt-3.1.4-cp35-cp35m-win32.whl |
|---|---|
| Size | 24.7 kB |
| Tags | CPython 3.5 CPython 3.5 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
d86da365dda59010ba0d1ac45aa78390f56bf7f992e65f70b3b081d5e5257b09
|
|
BLAKE2b-256 checksum How to use checksums |
a9354a9409f7a92f4dc3de8d7ac8ccbdb8960a671f3379855c9b96a3e6912800
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp35-cp35m-manylinux1_x86_64.whl
| Download URL | bcrypt-3.1.4-cp35-cp35m-manylinux1_x86_64.whl |
|---|---|
| Size | 54.3 kB |
| Tags | CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
a005ed6163490988711ff732386b08effcbf8df62ae93dd1e5bda0714fad8afb
|
|
BLAKE2b-256 checksum How to use checksums |
728d57da727cbb4ddf0295b0665a93bd8f46fbbd2a48b76cbb0896ca7d27301f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp35-cp35m-manylinux1_i686.whl
| Download URL | bcrypt-3.1.4-cp35-cp35m-manylinux1_i686.whl |
|---|---|
| Size | 55.5 kB |
| Tags | CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
8629ea6a8a59f865add1d6a87464c3c676e60101b8d16ef404d0a031424a8491
|
|
BLAKE2b-256 checksum How to use checksums |
dcfcc3d00b3fe7967fcde308dcc81f1150aad29123c5cc1429bb98a77b0e2575
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp35-cp35m-macosx_10_6_intel.whl
| Download URL | bcrypt-3.1.4-cp35-cp35m-macosx_10_6_intel.whl |
|---|---|
| Size | 51.6 kB |
| Tags | CPython 3.5 CPython 3.5 pymalloc macOS 10.6+ Intel (x86-64, i386) |
|
SHA-256 checksum How to use checksums |
cb18ffdc861dbb244f14be32c47ab69604d0aca415bee53485fcea4f8e93d5ef
|
|
BLAKE2b-256 checksum How to use checksums |
863735b25197621a819872629b2f8989b3824292ccbbeda8351bd1af77819cff
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp34-cp34m-win_amd64.whl
| Download URL | bcrypt-3.1.4-cp34-cp34m-win_amd64.whl |
|---|---|
| Size | 24.8 kB |
| Tags | CPython 3.4 CPython 3.4 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
988cac675e25133d01a78f2286189c1f01974470817a33eaf4cfee573cfb72a5
|
|
BLAKE2b-256 checksum How to use checksums |
c28adeede8dd611c7895d411f417ec49b03ef98266efa002a2f2b5366c9a1038
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp34-cp34m-win32.whl
| Download URL | bcrypt-3.1.4-cp34-cp34m-win32.whl |
|---|---|
| Size | 24.4 kB |
| Tags | CPython 3.4 CPython 3.4 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
09a3b8c258b815eadb611bad04ca15ec77d86aa9ce56070e1af0d5932f17642a
|
|
BLAKE2b-256 checksum How to use checksums |
f080277e65345c92785ce345b1967a293ad03c8fbc043dc521c287046f651000
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp34-cp34m-manylinux1_x86_64.whl
| Download URL | bcrypt-3.1.4-cp34-cp34m-manylinux1_x86_64.whl |
|---|---|
| Size | 54.3 kB |
| Tags | CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
ae35dbcb6b011af6c840893b32399252d81ff57d52c13e12422e16b5fea1d0fb
|
|
BLAKE2b-256 checksum How to use checksums |
4bf328fb421e6a2b2c95ce2878c36a5f7260589445b56b05661635084ed228a4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp34-cp34m-manylinux1_i686.whl
| Download URL | bcrypt-3.1.4-cp34-cp34m-manylinux1_i686.whl |
|---|---|
| Size | 55.5 kB |
| Tags | CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
321d4d48be25b8d77594d8324c0585c80ae91ac214f62db9098734e5e7fb280f
|
|
BLAKE2b-256 checksum How to use checksums |
562f1ef8cdfde8b0329bbf889a7bd0f2b168587e8e919cc4c90ac758ff2ab8a5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp34-cp34m-macosx_10_6_intel.whl
| Download URL | bcrypt-3.1.4-cp34-cp34m-macosx_10_6_intel.whl |
|---|---|
| Size | 51.6 kB |
| Tags | CPython 3.4 CPython 3.4 pymalloc macOS 10.6+ Intel (x86-64, i386) |
|
SHA-256 checksum How to use checksums |
43d1960e7db14042319c46925892d5fa99b08ff21d57482e6f5328a1aca03588
|
|
BLAKE2b-256 checksum How to use checksums |
01cf03537c1f6e938d1586d52f9fe75ecfbee9c0f120b272994922c7cf402799
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp34-abi3-manylinux1_x86_64.whl
File added late
This file was uploaded more than 14 days after the first file in this release.
While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.
We recommend inspecting the release file before installing.
| Download URL | bcrypt-3.1.4-cp34-abi3-manylinux1_x86_64.whl |
|---|---|
| Size | 51.4 kB |
| Tags | CPython 3.4 Linux glibc 2.5+ x86-64 abi3 |
|
SHA-256 checksum How to use checksums |
d860c7fff18d49e20339fc6dffc2d485635e36d4b2cccf58f45db815b64100b4
|
|
BLAKE2b-256 checksum How to use checksums |
a8ce1b9fe8001f95191a6254736d502fa51a2ff6bd0ffa9e290640f909b3adcb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp34-abi3-manylinux1_i686.whl
File added late
This file was uploaded more than 14 days after the first file in this release.
While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.
We recommend inspecting the release file before installing.
| Download URL | bcrypt-3.1.4-cp34-abi3-manylinux1_i686.whl |
|---|---|
| Size | 52.6 kB |
| Tags | CPython 3.4 Linux glibc 2.5+ x86-32 abi3 |
|
SHA-256 checksum How to use checksums |
f425e925485b3be48051f913dbe17e08e8c48588fdf44a26b8b14067041c0da6
|
|
BLAKE2b-256 checksum How to use checksums |
e555c4598f0a740c05bf3f55322e84d9d823bd2dc54acef72c5aac486eda1675
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp34-abi3-macosx_10_6_intel.whl
File added late
This file was uploaded more than 14 days after the first file in this release.
While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.
We recommend inspecting the release file before installing.
| Download URL | bcrypt-3.1.4-cp34-abi3-macosx_10_6_intel.whl |
|---|---|
| Size | 48.7 kB |
| Tags | CPython 3.4 abi3 macOS 10.6+ Intel (x86-64, i386) |
|
SHA-256 checksum How to use checksums |
63e06ffdaf4054a89757a3a1ab07f1b922daf911743114a54f7c561b9e1baa58
|
|
BLAKE2b-256 checksum How to use checksums |
ef938618e9869b5d4e256b4e42b3a431fd71dbe754dd8ccd8d0cba218df7a6ac
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp33-cp33m-manylinux1_x86_64.whl
| Download URL | bcrypt-3.1.4-cp33-cp33m-manylinux1_x86_64.whl |
|---|---|
| Size | 54.1 kB |
| Tags | CPython 3.3 CPython 3.3 pymalloc Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
c906bdb482162e9ef48eea9f8c0d967acceb5c84f2d25574c7d2a58d04861df1
|
|
BLAKE2b-256 checksum How to use checksums |
eb3b5bf2027d4758bc57750919c8918226d39527980d781d367483a2b5c6c6b9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp33-cp33m-manylinux1_i686.whl
| Download URL | bcrypt-3.1.4-cp33-cp33m-manylinux1_i686.whl |
|---|---|
| Size | 55.3 kB |
| Tags | CPython 3.3 CPython 3.3 pymalloc Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
e22f0997622e1ceec834fd25947dc2ee2962c2133ea693d61805bc867abaf7ea
|
|
BLAKE2b-256 checksum How to use checksums |
ac9e84d106ad279f50dca98e51273e8d53ee4bea72912d7a69143c5163a2b6bf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp27-cp27mu-manylinux1_x86_64.whl
| Download URL | bcrypt-3.1.4-cp27-cp27mu-manylinux1_x86_64.whl |
|---|---|
| Size | 57.4 kB |
| Tags | CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
2788c32673a2ad0062bea850ab73cffc0dba874db10d7a3682b6f2f280553f20
|
|
BLAKE2b-256 checksum How to use checksums |
2e5a2abeae20ce294fe6bf63da0e0b5a885c788e1360bbd124edcc0429678a59
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp27-cp27mu-manylinux1_i686.whl
| Download URL | bcrypt-3.1.4-cp27-cp27mu-manylinux1_i686.whl |
|---|---|
| Size | 58.5 kB |
| Tags | CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
34dd60b90b0f6de94a89e71fcd19913a30e83091c8468d0923a93a0cccbfbbff
|
|
BLAKE2b-256 checksum How to use checksums |
7d7bae3f1d135eed2d76673fb58b855def56cb5dcfdce5ed7afc24f10622251e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp27-cp27m-win_amd64.whl
| Download URL | bcrypt-3.1.4-cp27-cp27m-win_amd64.whl |
|---|---|
| Size | 24.7 kB |
| Tags | CPython 2.7 CPython 2.7 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f2fe545d27a619a552396533cddf70d83cecd880a611cdfdbb87ca6aec52f66b
|
|
BLAKE2b-256 checksum How to use checksums |
8e96023baaad7cf48be0eed2b53f5608c2a29c13f1ef9437496eaab55804e652
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp27-cp27m-win32.whl
| Download URL | bcrypt-3.1.4-cp27-cp27m-win32.whl |
|---|---|
| Size | 24.2 kB |
| Tags | CPython 2.7 CPython 2.7 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
6efd9ca20aefbaf2e7e6817a2c6ed4a50ff6900fafdea1bcb1d0e9471743b144
|
|
BLAKE2b-256 checksum How to use checksums |
4c4926ea2bf908e8d4250023e3b104e01b97ce48d6a7687c589c15d0a9f57fda
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp27-cp27m-manylinux1_x86_64.whl
| Download URL | bcrypt-3.1.4-cp27-cp27m-manylinux1_x86_64.whl |
|---|---|
| Size | 57.4 kB |
| Tags | CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
3b4c23300c4eded8895442c003ae9b14328ae69309ac5867e7530de8bdd7875d
|
|
BLAKE2b-256 checksum How to use checksums |
1c856b367f72c973600c1acac6f5d7fe2f919327e2b688fdb02effa07f6e6c4f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp27-cp27m-manylinux1_i686.whl
| Download URL | bcrypt-3.1.4-cp27-cp27m-manylinux1_i686.whl |
|---|---|
| Size | 58.5 kB |
| Tags | CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
f7fd3ed3745fe6e81e28dc3b3d76cce31525a91f32a387e1febd6b982caf8cdb
|
|
BLAKE2b-256 checksum How to use checksums |
3a983c40fd2ced86cec2769ce760d13988e4274827e8a45a9d3a9430a00ab3a0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp27-cp27m-macosx_10_6_intel.whl
| Download URL | bcrypt-3.1.4-cp27-cp27m-macosx_10_6_intel.whl |
|---|---|
| Size | 51.5 kB |
| Tags | CPython 2.7 CPython 2.7 pymalloc macOS 10.6+ Intel (x86-64, i386) |
|
SHA-256 checksum How to use checksums |
0f317e4ffbdd15c3c0f8ab5fbd86aa9aabc7bea18b5cc5951b456fe39e9f738c
|
|
BLAKE2b-256 checksum How to use checksums |
a19cc89411a505dca5ae822a28c6de6946583ff8a1d5d9190292f301d28dcf85
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp26-cp26mu-manylinux1_x86_64.whl
| Download URL | bcrypt-3.1.4-cp26-cp26mu-manylinux1_x86_64.whl |
|---|---|
| Size | 57.3 kB |
| Tags | CPython 2.6 CPython 2.6 pymalloc wide-unicode Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
346d6f84ff0b493dbc90c6b77136df83e81f903f0b95525ee80e5e6d5e4eef84
|
|
BLAKE2b-256 checksum How to use checksums |
4473d88f6b13883b074d65e8ee5d71388d3e420dc1ee82c7468e3612b2c89c10
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp26-cp26mu-manylinux1_i686.whl
| Download URL | bcrypt-3.1.4-cp26-cp26mu-manylinux1_i686.whl |
|---|---|
| Size | 58.4 kB |
| Tags | CPython 2.6 CPython 2.6 pymalloc wide-unicode Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
9eced8962ce3b7124fe20fd358cf8c7470706437fa064b9874f849ad4c5866fc
|
|
BLAKE2b-256 checksum How to use checksums |
620a5bb331ca3ff9efefa49896e02a1e8458c336e00bf0d13dadd191c3a5fdd8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp26-cp26m-manylinux1_x86_64.whl
| Download URL | bcrypt-3.1.4-cp26-cp26m-manylinux1_x86_64.whl |
|---|---|
| Size | 57.3 kB |
| Tags | CPython 2.6 CPython 2.6 pymalloc Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
b1e8491c6740f21b37cca77bc64677696a3fb9f32360794d57fa8477b7329eda
|
|
BLAKE2b-256 checksum How to use checksums |
8f24c99ee771af6f0e84dd4fca19fd2624aff2903c82bc086c78182a3db3d3ad
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / bcrypt-3.1.4-cp26-cp26m-manylinux1_i686.whl
| Download URL | bcrypt-3.1.4-cp26-cp26m-manylinux1_i686.whl |
|---|---|
| Size | 58.4 kB |
| Tags | CPython 2.6 CPython 2.6 pymalloc Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
f9210820ee4818d84658ed7df16a7f30c9fba7d8b139959950acef91745cc0f7
|
|
BLAKE2b-256 checksum How to use checksums |
7ac0b9e6b3d79e6bc69463cd797500ff80c0e3a8b233816617914e03269a0fc0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |