bcrypt
Modern(-ish) password hashing for your software and your servers
Science Score: 36.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
1 of 35 committers (2.9%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (15.6%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
Modern(-ish) password hashing for your software and your servers
Basic Info
Statistics
- Stars: 1,388
- Watchers: 26
- Forks: 178
- Open Issues: 6
- Releases: 0
Topics
Metadata Files
README.rst
bcrypt
======
.. image:: https://img.shields.io/pypi/v/bcrypt.svg
:target: https://pypi.org/project/bcrypt/
:alt: Latest Version
.. image:: https://github.com/pyca/bcrypt/workflows/CI/badge.svg?branch=main
:target: https://github.com/pyca/bcrypt/actions?query=workflow%3ACI+branch%3Amain
Acceptable password hashing for your software and your servers (but you should
really use argon2id or scrypt)
Installation
============
To install bcrypt, simply:
.. code:: console
$ 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:
.. code:: console
$ sudo apt-get install build-essential cargo
For Fedora and RHEL-derivatives, the following command will ensure that the required dependencies are installed:
.. code:: console
$ sudo yum install gcc cargo
For Alpine, the following command will ensure that the required dependencies are installed:
.. code:: console
$ 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
----------
* Bumped MSRV to 1.74.
4.3.0
-----
* 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:
.. code:: pycon
>>> 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.
.. code:: pycon
>>> 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):
.. code:: pycon
>>> 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``:
.. code:: pycon
>>> 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.
.. _`same security policy as cryptography`: https://cryptography.io/en/latest/security.html
.. _`standard library`: https://docs.python.org/3/library/hashlib.html#hashlib.scrypt
.. _`argon2_cffi`: https://argon2-cffi.readthedocs.io
.. _`cryptography`: https://cryptography.io/en/latest/hazmat/primitives/key-derivation-functions/#cryptography.hazmat.primitives.kdf.scrypt.Scrypt
Owner
- Name: Python Cryptographic Authority
- Login: pyca
- Kind: organization
- Repositories: 7
- Profile: https://github.com/pyca
GitHub Events
Total
- Issues event: 16
- Watch event: 147
- Delete event: 128
- Issue comment event: 120
- Push event: 151
- Pull request review comment event: 38
- Pull request review event: 169
- Pull request event: 283
- Fork event: 15
- Create event: 129
Last Year
- Issues event: 16
- Watch event: 147
- Delete event: 128
- Issue comment event: 120
- Push event: 151
- Pull request review comment event: 38
- Pull request review event: 169
- Pull request event: 283
- Fork event: 15
- Create event: 129
Committers
Last synced: 8 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| dependabot[bot] | 4****] | 515 |
| Alex Gaynor | a****r@g****m | 136 |
| Paul Kehrer | p****r@g****m | 81 |
| Donald Stufft | d****d@s****o | 40 |
| Nathan Goldbaum | n****m@g****m | 5 |
| Jon Dufresne | j****e@g****m | 4 |
| odidev | o****v@p****m | 3 |
| Sviatoslav Sydorenko | wk@s****a | 3 |
| Alexander Nestorov | a****t@g****m | 2 |
| Chris Erickson | c****n | 2 |
| jazzyb | j****s@g****m | 2 |
| Hugo | h****k | 2 |
| DemoYeti | 1****i | 1 |
| David Manthey | d****y@k****m | 1 |
| Danek Duvall | d****l@c****g | 1 |
| Ben Soyka | b****a@i****m | 1 |
| Tom Callaway | t****a@r****m | 1 |
| Eduardo | e****z@g****m | 1 |
| sbrunel | s****2@g****m | 1 |
| sblondon | s****n | 1 |
| manu | m****g@p****e | 1 |
| k3it | g****v@g****m | 1 |
| crazygolem | c****m | 1 |
| Wouter Kayser | w****r@g****m | 1 |
| Tim Graham | t****m@g****m | 1 |
| Terry Chia | t****4@g****m | 1 |
| Steve Dignam | s****d | 1 |
| Shivaram Lingamneni | s****n@c****u | 1 |
| Mark Dastmalchi-Round | m****d | 1 |
| Marc-Etienne Vargenau | m****u@n****m | 1 |
| and 5 more... | ||
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 60
- Total pull requests: 811
- Average time to close issues: about 1 month
- Average time to close pull requests: 1 day
- Total issue authors: 55
- Total pull request authors: 15
- Average comments per issue: 3.82
- Average comments per pull request: 0.32
- Merged pull requests: 699
- Bot issues: 5
- Bot pull requests: 682
Past Year
- Issues: 13
- Pull requests: 322
- Average time to close issues: about 1 month
- Average time to close pull requests: 1 day
- Issue authors: 11
- Pull request authors: 8
- Average comments per issue: 1.77
- Average comments per pull request: 0.38
- Merged pull requests: 289
- Bot issues: 2
- Bot pull requests: 273
Top Authors
Issue Authors
- dependabot[bot] (5)
- alexandernst (2)
- Ayikoandrew (1)
- amacons (1)
- razeta (1)
- Okonjidivine (1)
- AriBermeki (1)
- kanavin (1)
- himalacharya (1)
- githubUser982 (1)
- Yogesh-rana-2301 (1)
- atvcaptain (1)
- roland-robert (1)
- ssrsec (1)
- jose-lpa (1)
Pull Request Authors
- dependabot[bot] (682)
- alex (93)
- ngoldbaum (12)
- reaperhulk (10)
- DemoYeti (2)
- hswong3i (2)
- alexandernst (2)
- RS-Gits (1)
- hugovk (1)
- paketb0te (1)
- FWDekker (1)
- kowanietz (1)
- vargenau (1)
- crazygolem (1)
- webknjaz (1)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 45
-
Total downloads:
- pypi 113,775,817 last-month
- Total docker downloads: 7,063,071,931
-
Total dependent packages: 564
(may contain duplicates) -
Total dependent repositories: 45,668
(may contain duplicates) - Total versions: 104
- Total maintainers: 3
pypi.org: bcrypt
Modern password hashing for your software and your servers
- Documentation: https://bcrypt.readthedocs.io/
- License: Apache-2.0
-
Latest release: 4.3.0
published 12 months ago
Rankings
Maintainers (1)
alpine-v3.7: py-bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: APACHE2.0
-
Latest release: 3.1.4-r0
published over 8 years ago
Rankings
Maintainers (1)
alpine-v3.14: py3-bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 3.2.0-r3
published almost 5 years ago
Rankings
Maintainers (1)
alpine-v3.7: py2-bcrypt
Modern password hashing for your software and your servers - python2
- Homepage: https://github.com/pyca/bcrypt
- License: APACHE2.0
-
Latest release: 3.1.4-r0
published over 8 years ago
Rankings
Maintainers (1)
alpine-v3.18: py3-bcrypt-pyc
Precompiled Python bytecode for py3-bcrypt
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.0.1-r2
published almost 3 years ago
Rankings
Maintainers (1)
alpine-v3.18: py3-bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.0.1-r2
published almost 3 years ago
Rankings
Maintainers (1)
alpine-v3.10: py-bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 3.1.6-r1
published almost 7 years ago
Rankings
Maintainers (1)
alpine-v3.13: py3-bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 3.2.0-r2
published about 5 years ago
Rankings
Maintainers (1)
alpine-v3.9: py-bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 3.1.4-r0
published about 7 years ago
Rankings
Maintainers (1)
alpine-v3.9: py3-bcrypt
Modern password hashing for your software and your servers - python3
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 3.1.4-r0
published about 7 years ago
Rankings
Maintainers (1)
alpine-v3.15: py3-bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 3.2.0-r4
published over 4 years ago
Rankings
Maintainers (1)
alpine-v3.11: py3-bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 3.1.7-r2
published over 6 years ago
Rankings
Maintainers (1)
proxy.golang.org: github.com/pyca/bcrypt
- Documentation: https://pkg.go.dev/github.com/pyca/bcrypt#section-documentation
- License: apache-2.0
-
Latest release: v1.1.1
published almost 11 years ago
Rankings
alpine-v3.10: py3-bcrypt
Modern password hashing for your software and your servers - python3
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 3.1.6-r1
published almost 7 years ago
Rankings
Maintainers (1)
alpine-edge: py3-bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.3.0-r0
published 12 months ago
Rankings
Maintainers (1)
alpine-v3.8: py-bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 3.1.4-r0
published almost 8 years ago
Rankings
Maintainers (1)
alpine-v3.8: py3-bcrypt
Modern password hashing for your software and your servers - python3
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 3.1.4-r0
published almost 8 years ago
Rankings
Maintainers (1)
alpine-v3.8: py2-bcrypt
Modern password hashing for your software and your servers - python2
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 3.1.4-r0
published almost 8 years ago
Rankings
Maintainers (1)
alpine-v3.16: py3-bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 3.2.2-r0
published almost 4 years ago
Rankings
Maintainers (1)
alpine-v3.17: py3-bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.0.1-r0
published over 3 years ago
Rankings
Maintainers (1)
alpine-v3.10: py2-bcrypt
Modern password hashing for your software and your servers - python2
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 3.1.6-r1
published almost 7 years ago
Rankings
Maintainers (1)
alpine-v3.7: py3-bcrypt
Modern password hashing for your software and your servers - python3
- Homepage: https://github.com/pyca/bcrypt
- License: APACHE2.0
-
Latest release: 3.1.4-r0
published over 8 years ago
Rankings
Maintainers (1)
alpine-edge: py3-bcrypt-ceph
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.0.1-r1
published almost 2 years ago
Rankings
Maintainers (1)
alpine-edge: py3-bcrypt-ceph-pyc
Precompiled Python bytecode for py3-bcrypt-ceph
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.0.1-r1
published almost 2 years ago
Rankings
Maintainers (1)
alpine-v3.12: py3-bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 3.1.7-r2
published about 6 years ago
Rankings
Maintainers (1)
alpine-v3.9: py2-bcrypt
Modern password hashing for your software and your servers - python2
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 3.1.4-r0
published about 7 years ago
Rankings
Maintainers (1)
conda-forge.org: bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt/
- License: Apache-2.0
-
Latest release: 3.2.2
published almost 4 years ago
Rankings
alpine-edge: py3-bcrypt-pyc
Precompiled Python bytecode for py3-bcrypt
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.3.0-r0
published 12 months ago
Rankings
Maintainers (1)
anaconda.org: bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt/
- License: Apache-2.0
-
Latest release: 4.3.0
published 10 months ago
Rankings
alpine-v3.22: py3-bcrypt-pyc
Precompiled Python bytecode for py3-bcrypt
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.3.0-r0
published 12 months ago
Rankings
Maintainers (1)
alpine-v3.19: py3-bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.1.1-r0
published about 2 years ago
Rankings
Maintainers (1)
alpine-v3.19: py3-bcrypt-ceph-pyc
Precompiled Python bytecode for py3-bcrypt-ceph
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.0.1-r0
published about 2 years ago
Rankings
Maintainers (1)
alpine-v3.20: py3-bcrypt-ceph
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.0.1-r1
published almost 2 years ago
Rankings
Maintainers (1)
alpine-v3.21: py3-bcrypt-ceph
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.0.1-r1
published almost 2 years ago
Rankings
Maintainers (1)
alpine-v3.21: py3-bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.2.1-r0
published about 1 year ago
Rankings
Maintainers (1)
alpine-v3.19: py3-bcrypt-pyc
Precompiled Python bytecode for py3-bcrypt
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.1.1-r0
published about 2 years ago
Rankings
alpine-v3.21: py3-bcrypt-ceph-pyc
Precompiled Python bytecode for py3-bcrypt-ceph
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.0.1-r1
published almost 2 years ago
Rankings
Maintainers (1)
alpine-v3.21: py3-bcrypt-pyc
Precompiled Python bytecode for py3-bcrypt
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.2.1-r0
published about 1 year ago
Rankings
Maintainers (1)
alpine-v3.19: py3-bcrypt-ceph
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.0.1-r0
published about 2 years ago
Rankings
Maintainers (1)
alpine-v3.22: py3-bcrypt-ceph-pyc
Precompiled Python bytecode for py3-bcrypt-ceph
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.0.1-r1
published almost 2 years ago
Rankings
Maintainers (1)
alpine-v3.22: py3-bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.3.0-r0
published 12 months ago
Rankings
Maintainers (1)
alpine-v3.20: py3-bcrypt-pyc
Precompiled Python bytecode for py3-bcrypt
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.1.3-r0
published almost 2 years ago
Rankings
Maintainers (1)
alpine-v3.22: py3-bcrypt-ceph
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.0.1-r1
published almost 2 years ago
Rankings
Maintainers (1)
alpine-v3.20: py3-bcrypt-ceph-pyc
Precompiled Python bytecode for py3-bcrypt-ceph
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.0.1-r1
published almost 2 years ago
Rankings
Maintainers (1)
alpine-v3.20: py3-bcrypt
Modern password hashing for your software and your servers
- Homepage: https://github.com/pyca/bcrypt
- License: Apache-2.0
-
Latest release: 4.1.3-r0
published almost 2 years ago
Rankings
Maintainers (1)
Dependencies
- autocfg 1.1.0
- base64 0.13.0
- bcrypt 0.13.0
- bcrypt-pbkdf 0.8.1
- bitflags 1.3.2
- block-buffer 0.10.2
- blowfish 0.9.1
- byteorder 1.4.3
- cfg-if 1.0.0
- cipher 0.4.3
- cpufeatures 0.2.2
- crypto-common 0.1.5
- digest 0.10.3
- generic-array 0.14.5
- getrandom 0.2.7
- indoc 0.3.6
- indoc-impl 0.3.6
- inout 0.1.3
- instant 0.1.12
- libc 0.2.126
- lock_api 0.4.7
- once_cell 1.13.0
- parking_lot 0.11.2
- parking_lot_core 0.8.5
- paste 0.1.18
- paste-impl 0.1.18
- pbkdf2 0.10.1
- proc-macro-hack 0.5.19
- proc-macro2 1.0.40
- pyo3 0.15.2
- pyo3-build-config 0.15.2
- pyo3-macros 0.15.2
- pyo3-macros-backend 0.15.2
- quote 1.0.20
- redox_syscall 0.2.13
- scopeguard 1.1.0
- sha2 0.10.2
- smallvec 1.9.0
- subtle 2.4.1
- syn 1.0.98
- typenum 1.15.0
- unicode-ident 1.0.1
- unindent 0.1.9
- version_check 0.9.4
- wasi 0.11.0+wasi-snapshot-preview1
- winapi 0.3.9
- winapi-i686-pc-windows-gnu 0.4.0
- winapi-x86_64-pc-windows-gnu 0.4.0
- zeroize 1.5.6
- base64 0.13.0
- bcrypt 0.13
- bcrypt-pbkdf 0.8.1
- pyo3 0.15.2
- actions/cache v3.2.3 composite
- actions/checkout v3.3.0 composite
- actions/setup-python v4.5.0 composite
- dtolnay/rust-toolchain e645b0cf01249a964ec099494d38d2da0f0b349f composite
- dessant/lock-threads v4 composite
- actions/checkout v3.3.0 composite
- actions/setup-python v4.5.0 composite
- actions/upload-artifact v3.1.2 composite
- dtolnay/rust-toolchain e645b0cf01249a964ec099494d38d2da0f0b349f composite
- golang.org/x/crypto v0.0.0-20220214200702-86341886e292
- golang.org/x/crypto v0.0.0-20220214200702-86341886e292