bcrypt

Modern(-ish) password hashing for your software and your servers

https://github.com/pyca/bcrypt

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

python

Keywords from Contributors

fuzzing property-based-testing unit-testing human cookies forhumans python-requests requests templates interactive
Last synced: 6 months ago · JSON representation

Repository

Modern(-ish) password hashing for your software and your servers

Basic Info
  • Host: GitHub
  • Owner: pyca
  • License: apache-2.0
  • Language: Python
  • Default Branch: main
  • Homepage:
  • Size: 1.12 MB
Statistics
  • Stars: 1,388
  • Watchers: 26
  • Forks: 178
  • Open Issues: 6
  • Releases: 0
Topics
python
Created almost 13 years ago · Last pushed 6 months ago
Metadata Files
Readme License

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

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

All Time
  • Total Commits: 818
  • Total Committers: 35
  • Avg Commits per committer: 23.371
  • Development Distribution Score (DDS): 0.37
Past Year
  • Commits: 187
  • Committers: 8
  • Avg Commits per committer: 23.375
  • Development Distribution Score (DDS): 0.171
Top Committers
Name Email 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...

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
dependencies (5) github_actions (3) rust (2)
Pull Request Labels
dependencies (682) rust (507) github_actions (174) go (1)

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

  • Versions: 27
  • Dependent Packages: 494
  • Dependent Repositories: 45,354
  • Downloads: 113,775,817 Last month
  • Docker Downloads: 7,063,071,931
Rankings
Docker downloads count: 0.0%
Downloads: 0.0%
Dependent repos count: 0.0%
Dependent packages count: 0.1%
Average: 1.3%
Stargazers count: 2.7%
Forks count: 4.8%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.7: py-bcrypt

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 4
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Average: 3.2%
Stargazers count: 3.2%
Forks count: 4.1%
Dependent packages count: 5.6%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.14: py3-bcrypt

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 4
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Average: 4.1%
Dependent packages count: 4.4%
Stargazers count: 5.3%
Forks count: 6.6%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.7: py2-bcrypt

Modern password hashing for your software and your servers - python2

  • Versions: 1
  • Dependent Packages: 2
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 3.2%
Forks count: 4.1%
Average: 4.1%
Dependent packages count: 9.2%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.18: py3-bcrypt-pyc

Precompiled Python bytecode for py3-bcrypt

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 4.2%
Stargazers count: 7.9%
Forks count: 9.1%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.18: py3-bcrypt

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 4.2%
Stargazers count: 7.9%
Forks count: 9.1%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.10: py-bcrypt

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 5
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 4.1%
Average: 4.4%
Forks count: 5.2%
Dependent packages count: 8.5%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.13: py3-bcrypt

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 2
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Average: 4.5%
Stargazers count: 5.2%
Dependent packages count: 6.2%
Forks count: 6.6%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.9: py-bcrypt

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 2
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 3.9%
Average: 4.5%
Forks count: 4.9%
Dependent packages count: 9.3%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.9: py3-bcrypt

Modern password hashing for your software and your servers - python3

  • Versions: 1
  • Dependent Packages: 2
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 3.9%
Average: 4.5%
Forks count: 4.9%
Dependent packages count: 9.3%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.15: py3-bcrypt

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 5
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Average: 4.5%
Dependent packages count: 5.5%
Stargazers count: 5.7%
Forks count: 6.9%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.11: py3-bcrypt

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 2
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Average: 4.6%
Stargazers count: 4.6%
Forks count: 5.6%
Dependent packages count: 8.1%
Maintainers (1)
Last synced: 6 months ago
proxy.golang.org: github.com/pyca/bcrypt
  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Stargazers count: 1.3%
Forks count: 1.4%
Average: 4.8%
Dependent packages count: 7.0%
Dependent repos count: 9.3%
Last synced: 6 months ago
alpine-v3.10: py3-bcrypt

Modern password hashing for your software and your servers - python3

  • Versions: 1
  • Dependent Packages: 3
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 4.1%
Forks count: 5.2%
Average: 5.3%
Dependent packages count: 11.8%
Maintainers (1)
Last synced: 6 months ago
alpine-edge: py3-bcrypt

Modern password hashing for your software and your servers

  • Versions: 10
  • Dependent Packages: 3
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 2.3%
Average: 5.5%
Stargazers count: 9.3%
Forks count: 10.3%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.8: py-bcrypt

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 1
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 3.6%
Forks count: 4.6%
Average: 6.3%
Dependent packages count: 16.9%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.8: py3-bcrypt

Modern password hashing for your software and your servers - python3

  • Versions: 1
  • Dependent Packages: 1
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 3.6%
Forks count: 4.6%
Average: 6.3%
Dependent packages count: 16.9%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.8: py2-bcrypt

Modern password hashing for your software and your servers - python2

  • Versions: 1
  • Dependent Packages: 1
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 3.6%
Forks count: 4.6%
Average: 6.3%
Dependent packages count: 16.9%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.16: py3-bcrypt

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 4
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 6.1%
Average: 6.3%
Forks count: 7.2%
Dependent packages count: 12.0%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.17: py3-bcrypt

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 3
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Average: 6.6%
Stargazers count: 7.7%
Forks count: 8.9%
Dependent packages count: 9.9%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.10: py2-bcrypt

Modern password hashing for your software and your servers - python2

  • Versions: 1
  • Dependent Packages: 1
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 4.1%
Forks count: 5.2%
Average: 7.7%
Dependent packages count: 21.5%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.7: py3-bcrypt

Modern password hashing for your software and your servers - python3

  • Versions: 1
  • Dependent Packages: 2
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 3.2%
Forks count: 4.1%
Average: 7.7%
Dependent packages count: 23.4%
Maintainers (1)
Last synced: 6 months ago
alpine-edge: py3-bcrypt-ceph

Modern password hashing for your software and your servers

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Average: 7.8%
Dependent packages count: 15.6%
Maintainers (1)
Last synced: 6 months ago
alpine-edge: py3-bcrypt-ceph-pyc

Precompiled Python bytecode for py3-bcrypt-ceph

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Average: 7.8%
Dependent packages count: 15.6%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.12: py3-bcrypt

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 4.6%
Forks count: 5.6%
Average: 7.9%
Dependent packages count: 21.5%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.9: py2-bcrypt

Modern password hashing for your software and your servers - python2

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 3.9%
Forks count: 4.9%
Average: 8.0%
Dependent packages count: 23.2%
Maintainers (1)
Last synced: 6 months ago
conda-forge.org: bcrypt

Modern password hashing for your software and your servers

  • Versions: 6
  • Dependent Packages: 20
  • Dependent Repositories: 157
Rankings
Dependent repos count: 2.8%
Dependent packages count: 3.2%
Average: 8.5%
Stargazers count: 12.7%
Forks count: 15.4%
Last synced: 6 months ago
alpine-edge: py3-bcrypt-pyc

Precompiled Python bytecode for py3-bcrypt

  • Versions: 9
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Average: 8.5%
Stargazers count: 9.4%
Forks count: 10.4%
Dependent packages count: 14.4%
Maintainers (1)
Last synced: 6 months ago
anaconda.org: bcrypt

Modern password hashing for your software and your servers

  • Versions: 6
  • Dependent Packages: 3
  • Dependent Repositories: 157
Rankings
Dependent repos count: 15.8%
Dependent packages count: 21.6%
Average: 22.2%
Stargazers count: 23.9%
Forks count: 27.6%
Last synced: 6 months ago
alpine-v3.22: py3-bcrypt-pyc

Precompiled Python bytecode for py3-bcrypt

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.19: py3-bcrypt

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.19: py3-bcrypt-ceph-pyc

Precompiled Python bytecode for py3-bcrypt-ceph

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.20: py3-bcrypt-ceph

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 7 months ago
alpine-v3.21: py3-bcrypt-ceph

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.21: py3-bcrypt

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.19: py3-bcrypt-pyc

Precompiled Python bytecode for py3-bcrypt

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Last synced: 6 months ago
alpine-v3.21: py3-bcrypt-ceph-pyc

Precompiled Python bytecode for py3-bcrypt-ceph

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.21: py3-bcrypt-pyc

Precompiled Python bytecode for py3-bcrypt

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.19: py3-bcrypt-ceph

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.22: py3-bcrypt-ceph-pyc

Precompiled Python bytecode for py3-bcrypt-ceph

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.22: py3-bcrypt

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.20: py3-bcrypt-pyc

Precompiled Python bytecode for py3-bcrypt

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.22: py3-bcrypt-ceph

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.20: py3-bcrypt-ceph-pyc

Precompiled Python bytecode for py3-bcrypt-ceph

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.20: py3-bcrypt

Modern password hashing for your software and your servers

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago

Dependencies

src/_bcrypt/Cargo.lock cargo
  • 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
src/_bcrypt/Cargo.toml cargo
  • base64 0.13.0
  • bcrypt 0.13
  • bcrypt-pbkdf 0.8.1
  • pyo3 0.15.2
.github/workflows/ci.yml actions
  • actions/cache v3.2.3 composite
  • actions/checkout v3.3.0 composite
  • actions/setup-python v4.5.0 composite
  • dtolnay/rust-toolchain e645b0cf01249a964ec099494d38d2da0f0b349f composite
.github/workflows/lock.yml actions
  • dessant/lock-threads v4 composite
.github/workflows/wheel-builder.yml actions
  • 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
tests/reference/go.mod go
  • golang.org/x/crypto v0.0.0-20220214200702-86341886e292
tests/reference/go.sum go
  • golang.org/x/crypto v0.0.0-20220214200702-86341886e292
pyproject.toml pypi
requirements.txt pypi
setup.py pypi