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

Good 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

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

$ apk add --update musl-dev gcc libffi-dev

Alternatives

While bcrypt remains a good 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

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.6+, and PyPy 3.

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.

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-3.2.2.tar.gz (42.5 kB view details)

Uploaded Source

Built Distributions

bcrypt-3.2.2-cp36-abi3-win_amd64.whl (29.6 kB view details)

Uploaded CPython 3.6+ Windows x86-64

bcrypt-3.2.2-cp36-abi3-win32.whl (27.9 kB view details)

Uploaded CPython 3.6+ Windows x86

bcrypt-3.2.2-cp36-abi3-musllinux_1_1_x86_64.whl (62.1 kB view details)

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

bcrypt-3.2.2-cp36-abi3-musllinux_1_1_aarch64.whl (56.8 kB view details)

Uploaded CPython 3.6+ musllinux: musl 1.1+ ARM64

bcrypt-3.2.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (61.0 kB view details)

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

bcrypt-3.2.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (62.3 kB view details)

Uploaded CPython 3.6+ manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.24+ x86-64

bcrypt-3.2.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (54.4 kB view details)

Uploaded CPython 3.6+ manylinux: glibc 2.17+ ARM64

bcrypt-3.2.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (54.9 kB view details)

Uploaded CPython 3.6+ manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

bcrypt-3.2.2-cp36-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (64.7 kB view details)

Uploaded CPython 3.6+ manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

bcrypt-3.2.2-cp36-abi3-macosx_10_10_universal2.whl (50.0 kB view details)

Uploaded CPython 3.6+ macOS 10.10+ universal2 (ARM64, x86-64)

File details

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

File metadata

  • Download URL: bcrypt-3.2.2.tar.gz
  • Upload date:
  • Size: 42.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.1

File hashes

Hashes for bcrypt-3.2.2.tar.gz
Algorithm Hash digest
SHA256 433c410c2177057705da2a9f2cd01dd157493b2a7ac14c8593a16b3dab6b6bfb
MD5 3978ac76158b6241d1c2ca140dac1b56
BLAKE2b-256 e836edc85ab295ceff724506252b774155eff8a238f13730c8b13badd33ef866

See more details on using hashes here.

File details

Details for the file bcrypt-3.2.2-cp36-abi3-win_amd64.whl.

File metadata

  • Download URL: bcrypt-3.2.2-cp36-abi3-win_amd64.whl
  • Upload date:
  • Size: 29.6 kB
  • Tags: CPython 3.6+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.1

File hashes

Hashes for bcrypt-3.2.2-cp36-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 7ff2069240c6bbe49109fe84ca80508773a904f5a8cb960e02a977f7f519b129
MD5 c0105eeef5807cc57e2da174710f0448
BLAKE2b-256 f5377cd297ff571c4d86371ff024c0e008b37b59e895b28f69444a9b6f94ca1a

See more details on using hashes here.

File details

Details for the file bcrypt-3.2.2-cp36-abi3-win32.whl.

File metadata

  • Download URL: bcrypt-3.2.2-cp36-abi3-win32.whl
  • Upload date:
  • Size: 27.9 kB
  • Tags: CPython 3.6+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.1

File hashes

Hashes for bcrypt-3.2.2-cp36-abi3-win32.whl
Algorithm Hash digest
SHA256 4e029cef560967fb0cf4a802bcf4d562d3d6b4b1bf81de5ec1abbe0f1adb027e
MD5 f2a5bede4e91c0c69ec2642ba2b24f64
BLAKE2b-256 f164cd93e2c3e28a5fa8bcf6753d5cc5e858e4da08bf51404a0adb6a412532de

See more details on using hashes here.

File details

Details for the file bcrypt-3.2.2-cp36-abi3-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-3.2.2-cp36-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cd43303d6b8a165c29ec6756afd169faba9396a9472cdff753fe9f19b96ce2fa
MD5 da3895ebff263ba3263ad3ef0a5c1e12
BLAKE2b-256 1876057b0637c880e6cb0abdc8a867d080376ddca6ed7d05b7738f589cc5c1a8

See more details on using hashes here.

File details

Details for the file bcrypt-3.2.2-cp36-abi3-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-3.2.2-cp36-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7d9ba2e41e330d2af4af6b1b6ec9e6128e91343d0b4afb9282e54e5508f31baa
MD5 db80acb98372ec85b5605b64999cab87
BLAKE2b-256 fc9ae1867f0b27a3f4ce90e21dd7f322f0e15d4aac2434d3b938dcf765e47c6b

See more details on using hashes here.

File details

Details for the file bcrypt-3.2.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-3.2.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b02d6bfc6336d1094276f3f588aa1225a598e27f8e3388f4db9948cb707b521
MD5 7f4d2794cae61edec1f4b0816abe61d8
BLAKE2b-256 3edf289db4f31b303de6addb0897c8b5c01b23bd4b8c511ac80a32b08658847c

See more details on using hashes here.

File details

Details for the file bcrypt-3.2.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-3.2.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 6d2cb9d969bfca5bc08e45864137276e4c3d3d7de2b162171def3d188bf9d34a
MD5 e6962d87883cae2d389323d0b554a104
BLAKE2b-256 861bf4d7425dfc6cd0e405b48ee484df6d80fb39e05f25963dbfcc2c511e8341

See more details on using hashes here.

File details

Details for the file bcrypt-3.2.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-3.2.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88273d806ab3a50d06bc6a2fc7c87d737dd669b76ad955f449c43095389bc8fb
MD5 cb91f3b899d6b7c863dc7c1e66af74ce
BLAKE2b-256 613ddce83194830183aa700cab07c89822471d21663a86a0b305d1e5c7b02810

See more details on using hashes here.

File details

Details for the file bcrypt-3.2.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for bcrypt-3.2.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 61bae49580dce88095d669226d5076d0b9d927754cedbdf76c6c9f5099ad6f26
MD5 bd0aa2b8a24577d6099643b2ce3fda4f
BLAKE2b-256 8cb31257f7d64ee0aa0eb4fb1de5da8c2647a57db7b737da1f2342ac1889d3b8

See more details on using hashes here.

File details

Details for the file bcrypt-3.2.2-cp36-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for bcrypt-3.2.2-cp36-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a2c46100e315c3a5b90fdc53e429c006c5f962529bc27e1dfd656292c20ccc40
MD5 13d19e47442eab8055a777665fd3c80a
BLAKE2b-256 408fb67b42faa2e4d944b145b1a402fc08db0af8fe2dfa92418c674b5a302496

See more details on using hashes here.

File details

Details for the file bcrypt-3.2.2-cp36-abi3-macosx_10_10_universal2.whl.

File metadata

File hashes

Hashes for bcrypt-3.2.2-cp36-abi3-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 7180d98a96f00b1050e93f5b0f556e658605dd9f524d0b0e68ae7944673f525e
MD5 17ac7d184b0d8fb6c25cd6a6d0a1ff2e
BLAKE2b-256 a0c205354b1d4351d2e686a32296cc9dd1e63f9909a580636df0f7b06d774600

See more details on using hashes here.

Supported by

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