bcrypt


Namebcrypt JSON
Version 4.1.2 PyPI version JSON
download
home_page
SummaryModern password hashing for your software and your servers
upload_time2023-12-15 14:53:25
maintainer
docs_urlNone
author
requires_python>=3.7
licenseApache-2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            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:: bash

    $ 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:: bash

    $ sudo apt-get install build-essential cargo

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

.. code:: bash

    $ sudo yum install gcc cargo

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

.. code:: bash

    $ 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
=========

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.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.

.. _`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

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "bcrypt",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "",
    "author_email": "The Python Cryptographic Authority developers <cryptography-dev@python.org>",
    "download_url": "https://files.pythonhosted.org/packages/72/07/6a6f2047a9dc9d012b7b977e4041d37d078b76b44b7ee4daf331c1e6fb35/bcrypt-4.1.2.tar.gz",
    "platform": null,
    "description": "bcrypt\n======\n\n.. image:: https://img.shields.io/pypi/v/bcrypt.svg\n    :target: https://pypi.org/project/bcrypt/\n    :alt: Latest Version\n\n.. image:: https://github.com/pyca/bcrypt/workflows/CI/badge.svg?branch=main\n    :target: https://github.com/pyca/bcrypt/actions?query=workflow%3ACI+branch%3Amain\n\nAcceptable password hashing for your software and your servers (but you should\nreally use argon2id or scrypt)\n\n\nInstallation\n============\n\nTo install bcrypt, simply:\n\n.. code:: bash\n\n    $ pip install bcrypt\n\nNote that bcrypt should build very easily on Linux provided you have a C\ncompiler and a Rust compiler (the minimum supported Rust version is 1.56.0).\n\nFor Debian and Ubuntu, the following command will ensure that the required dependencies are installed:\n\n.. code:: bash\n\n    $ sudo apt-get install build-essential cargo\n\nFor Fedora and RHEL-derivatives, the following command will ensure that the required dependencies are installed:\n\n.. code:: bash\n\n    $ sudo yum install gcc cargo\n\nFor Alpine, the following command will ensure that the required dependencies are installed:\n\n.. code:: bash\n\n    $ apk add --update musl-dev gcc cargo\n\n\nAlternatives\n============\n\nWhile 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`_.\n\nChangelog\n=========\n\n4.1.2\n-----\n\n* Publish both ``py37`` and ``py39`` wheels. This should resolve some errors\n  relating to initializing a module multiple times per process.\n\n4.1.1\n-----\n\n* Fixed the type signature on the ``kdf`` method.\n* Fixed packaging bug on Windows.\n* Fixed incompatibility with passlib package detection assumptions.\n\n4.1.0\n-----\n\n* Dropped support for Python 3.6.\n* Bumped MSRV to 1.64. (Note: Rust 1.63 can be used by setting the ``BCRYPT_ALLOW_RUST_163`` environment variable)\n\n4.0.1\n-----\n\n* We now build PyPy ``manylinux`` wheels.\n* Fixed a bug where passing an invalid ``salt`` to ``checkpw`` could result in\n  a ``pyo3_runtime.PanicException``. It now correctly raises a ``ValueError``.\n\n4.0.0\n-----\n\n* ``bcrypt`` is now implemented in Rust. Users building from source will need\n  to have a Rust compiler available. Nothing will change for users downloading\n  wheels.\n* We no longer ship ``manylinux2010`` wheels. Users should upgrade to the latest\n  ``pip`` to ensure this doesn\u2019t cause issues downloading wheels on their\n  platform. We now ship ``manylinux_2_28`` wheels for users on new enough platforms.\n* ``NUL`` bytes are now allowed in inputs.\n\n\n3.2.2\n-----\n\n* Fixed packaging of ``py.typed`` files in wheels so that ``mypy`` works.\n\n3.2.1\n-----\n\n* Added support for compilation on z/OS\n* The next release of ``bcrypt`` with be 4.0 and it will require Rust at\n  compile time, for users building from source. There will be no additional\n  requirement for users who are installing from wheels. Users on most\n  platforms will be able to obtain a wheel by making sure they have an up to\n  date ``pip``. The minimum supported Rust version will be 1.56.0.\n* This will be the final release for which we ship ``manylinux2010`` wheels.\n  Going forward the minimum supported manylinux ABI for our wheels will be\n  ``manylinux2014``. The vast majority of users will continue to receive\n  ``manylinux`` wheels provided they have an up to date ``pip``.\n\n\n3.2.0\n-----\n\n* Added typehints for library functions.\n* Dropped support for Python versions less than 3.6 (2.7, 3.4, 3.5).\n* Shipped ``abi3`` Windows wheels (requires pip >= 20).\n\n3.1.7\n-----\n\n* Set a ``setuptools`` lower bound for PEP517 wheel building.\n* We no longer distribute 32-bit ``manylinux1`` wheels. Continuing to produce\n  them was a maintenance burden.\n\n3.1.6\n-----\n\n* Added support for compilation on Haiku.\n\n3.1.5\n-----\n\n* Added support for compilation on AIX.\n* Dropped Python 2.6 and 3.3 support.\n* Switched to using ``abi3`` wheels for Python 3. If you are not getting a\n  wheel on a compatible platform please upgrade your ``pip`` version.\n\n3.1.4\n-----\n\n* Fixed compilation with mingw and on illumos.\n\n3.1.3\n-----\n* Fixed a compilation issue on Solaris.\n* Added a warning when using too few rounds with ``kdf``.\n\n3.1.2\n-----\n* Fixed a compile issue affecting big endian platforms.\n* Fixed invalid escape sequence warnings on Python 3.6.\n* Fixed building in non-UTF8 environments on Python 2.\n\n3.1.1\n-----\n* Resolved a ``UserWarning`` when used with ``cffi`` 1.8.3.\n\n3.1.0\n-----\n* Added support for ``checkpw``, a convenience method for verifying a password.\n* Ensure that you get a ``$2y$`` hash when you input a ``$2y$`` salt.\n* Fixed a regression where ``$2a`` hashes were vulnerable to a wraparound bug.\n* Fixed compilation under Alpine Linux.\n\n3.0.0\n-----\n* Switched the C backend to code obtained from the OpenBSD project rather than\n  openwall.\n* Added support for ``bcrypt_pbkdf`` via the ``kdf`` function.\n\n2.0.0\n-----\n* Added support for an adjustible prefix when calling ``gensalt``.\n* Switched to CFFI 1.0+\n\nUsage\n-----\n\nPassword Hashing\n~~~~~~~~~~~~~~~~\n\nHashing and then later checking that a password matches the previous hashed\npassword is very simple:\n\n.. code:: pycon\n\n    >>> import bcrypt\n    >>> password = b\"super secret password\"\n    >>> # Hash a password for the first time, with a randomly-generated salt\n    >>> hashed = bcrypt.hashpw(password, bcrypt.gensalt())\n    >>> # Check that an unhashed password matches one that has previously been\n    >>> # hashed\n    >>> if bcrypt.checkpw(password, hashed):\n    ...     print(\"It Matches!\")\n    ... else:\n    ...     print(\"It Does not Match :(\")\n\nKDF\n~~~\n\nAs of 3.0.0 ``bcrypt`` now offers a ``kdf`` function which does ``bcrypt_pbkdf``.\nThis KDF is used in OpenSSH's newer encrypted private key format.\n\n.. code:: pycon\n\n    >>> import bcrypt\n    >>> key = bcrypt.kdf(\n    ...     password=b'password',\n    ...     salt=b'salt',\n    ...     desired_key_bytes=32,\n    ...     rounds=100)\n\n\nAdjustable Work Factor\n~~~~~~~~~~~~~~~~~~~~~~\nOne of bcrypt's features is an adjustable logarithmic work factor. To adjust\nthe work factor merely pass the desired number of rounds to\n``bcrypt.gensalt(rounds=12)`` which defaults to 12):\n\n.. code:: pycon\n\n    >>> import bcrypt\n    >>> password = b\"super secret password\"\n    >>> # Hash a password for the first time, with a certain number of rounds\n    >>> hashed = bcrypt.hashpw(password, bcrypt.gensalt(14))\n    >>> # Check that a unhashed password matches one that has previously been\n    >>> #   hashed\n    >>> if bcrypt.checkpw(password, hashed):\n    ...     print(\"It Matches!\")\n    ... else:\n    ...     print(\"It Does not Match :(\")\n\n\nAdjustable Prefix\n~~~~~~~~~~~~~~~~~\n\nAnother one of bcrypt's features is an adjustable prefix to let you define what\nlibraries you'll remain compatible with. To adjust this, pass either ``2a`` or\n``2b`` (the default) to ``bcrypt.gensalt(prefix=b\"2b\")`` as a bytes object.\n\nAs of 3.0.0 the ``$2y$`` prefix is still supported in ``hashpw`` but deprecated.\n\nMaximum Password Length\n~~~~~~~~~~~~~~~~~~~~~~~\n\nThe bcrypt algorithm only handles passwords up to 72 characters, any characters\nbeyond that are ignored. To work around this, a common approach is to hash a\npassword with a cryptographic hash (such as ``sha256``) and then base64\nencode it to prevent NULL byte problems before hashing the result with\n``bcrypt``:\n\n.. code:: pycon\n\n    >>> password = b\"an incredibly long password\" * 10\n    >>> hashed = bcrypt.hashpw(\n    ...     base64.b64encode(hashlib.sha256(password).digest()),\n    ...     bcrypt.gensalt()\n    ... )\n\nCompatibility\n-------------\n\nThis library should be compatible with py-bcrypt and it will run on Python\n3.6+, and PyPy 3.\n\nC Code\n------\n\nThis library uses code from OpenBSD.\n\nSecurity\n--------\n\n``bcrypt`` follows the `same security policy as cryptography`_, if you\nidentify a vulnerability, we ask you to contact us privately.\n\n.. _`same security policy as cryptography`: https://cryptography.io/en/latest/security.html\n.. _`standard library`: https://docs.python.org/3/library/hashlib.html#hashlib.scrypt\n.. _`argon2_cffi`: https://argon2-cffi.readthedocs.io\n.. _`cryptography`: https://cryptography.io/en/latest/hazmat/primitives/key-derivation-functions/#cryptography.hazmat.primitives.kdf.scrypt.Scrypt\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Modern password hashing for your software and your servers",
    "version": "4.1.2",
    "project_urls": {
        "homepage": "https://github.com/pyca/bcrypt/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfcc5a73c2ecfa9f255423530e8aeaceb0590da12e4c83c99fdac17093f5ce42",
                "md5": "1156bcc7ae008176de946050791c7de9",
                "sha256": "ac621c093edb28200728a9cca214d7e838529e557027ef0581685909acd28b5e"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp37-abi3-macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "1156bcc7ae008176de946050791c7de9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 528438,
            "upload_time": "2023-12-15T14:52:41",
            "upload_time_iso_8601": "2023-12-15T14:52:41.282558Z",
            "url": "https://files.pythonhosted.org/packages/df/cc/5a73c2ecfa9f255423530e8aeaceb0590da12e4c83c99fdac17093f5ce42/bcrypt-4.1.2-cp37-abi3-macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "222e32c1810b8470aca98c33892fc8c559c1be95eba711cb1bb82fbbf2a4752a",
                "md5": "9e42dc7050cace94fa2bd863a4980230",
                "sha256": "ea505c97a5c465ab8c3ba75c0805a102ce526695cd6818c6de3b1a38f6f60da1"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9e42dc7050cace94fa2bd863a4980230",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 695692,
            "upload_time": "2023-12-15T14:52:43",
            "upload_time_iso_8601": "2023-12-15T14:52:43.585269Z",
            "url": "https://files.pythonhosted.org/packages/22/2e/32c1810b8470aca98c33892fc8c559c1be95eba711cb1bb82fbbf2a4752a/bcrypt-4.1.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "41ede446078ebe94d8ccac7170ff4bab83d8c86458c6fcfc7c5a4b449974fdd6",
                "md5": "2a55e55e32433ebea109134cab619c94",
                "sha256": "57fa9442758da926ed33a91644649d3e340a71e2d0a5a8de064fb621fd5a3326"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2a55e55e32433ebea109134cab619c94",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 699072,
            "upload_time": "2023-12-15T14:52:45",
            "upload_time_iso_8601": "2023-12-15T14:52:45.688729Z",
            "url": "https://files.pythonhosted.org/packages/41/ed/e446078ebe94d8ccac7170ff4bab83d8c86458c6fcfc7c5a4b449974fdd6/bcrypt-4.1.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d7c761ab4586beb7aa14b3fa2f382794746a218fffe1d22d9e10926200c8ccd",
                "md5": "e3e8a7e3107e9d821c62fb61c0afbb3f",
                "sha256": "eb3bd3321517916696233b5e0c67fd7d6281f0ef48e66812db35fc963a422a1c"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp37-abi3-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e3e8a7e3107e9d821c62fb61c0afbb3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 695934,
            "upload_time": "2023-12-15T14:52:47",
            "upload_time_iso_8601": "2023-12-15T14:52:47.098958Z",
            "url": "https://files.pythonhosted.org/packages/6d/7c/761ab4586beb7aa14b3fa2f382794746a218fffe1d22d9e10926200c8ccd/bcrypt-4.1.2-cp37-abi3-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91216350647549656138a067788d67bdb5ee89ffc2f025618ebf60d3806274c4",
                "md5": "790117776b1c1687738008f5a7be3b92",
                "sha256": "6cad43d8c63f34b26aef462b6f5e44fdcf9860b723d2453b5d391258c4c8e966"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp37-abi3-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "790117776b1c1687738008f5a7be3b92",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 699120,
            "upload_time": "2023-12-15T14:52:48",
            "upload_time_iso_8601": "2023-12-15T14:52:48.557479Z",
            "url": "https://files.pythonhosted.org/packages/91/21/6350647549656138a067788d67bdb5ee89ffc2f025618ebf60d3806274c4/bcrypt-4.1.2-cp37-abi3-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54fcfd9a299d4dfd7da38b4570e487ea2465fb92021ab31a08bd66b3caba0baa",
                "md5": "0c92375fbe44f9f930c5454cb021d198",
                "sha256": "44290ccc827d3a24604f2c8bcd00d0da349e336e6503656cb8192133e27335e2"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp37-abi3-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0c92375fbe44f9f930c5454cb021d198",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 725857,
            "upload_time": "2023-12-15T14:52:49",
            "upload_time_iso_8601": "2023-12-15T14:52:49.942492Z",
            "url": "https://files.pythonhosted.org/packages/54/fc/fd9a299d4dfd7da38b4570e487ea2465fb92021ab31a08bd66b3caba0baa/bcrypt-4.1.2-cp37-abi3-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a5bdfcd8b7422a8f3b4ce3d28d64307e2f3502e3b5c540dde35eccda2d6c763",
                "md5": "4a222b1e528fc2eb74c5a4a3ba6a772a",
                "sha256": "732b3920a08eacf12f93e6b04ea276c489f1c8fb49344f564cca2adb663b3e4c"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp37-abi3-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a222b1e528fc2eb74c5a4a3ba6a772a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 730079,
            "upload_time": "2023-12-15T14:52:51",
            "upload_time_iso_8601": "2023-12-15T14:52:51.902011Z",
            "url": "https://files.pythonhosted.org/packages/5a/5b/dfcd8b7422a8f3b4ce3d28d64307e2f3502e3b5c540dde35eccda2d6c763/bcrypt-4.1.2-cp37-abi3-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21d97924b194b3aa9bcc39f4592470995841efe71015cb8a79abae9bb043ec28",
                "md5": "7e8f59d27f29ef64463e2bca17886bc8",
                "sha256": "1c28973decf4e0e69cee78c68e30a523be441972c826703bb93099868a8ff5b5"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp37-abi3-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7e8f59d27f29ef64463e2bca17886bc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 732432,
            "upload_time": "2023-12-15T14:52:53",
            "upload_time_iso_8601": "2023-12-15T14:52:53.478415Z",
            "url": "https://files.pythonhosted.org/packages/21/d9/7924b194b3aa9bcc39f4592470995841efe71015cb8a79abae9bb043ec28/bcrypt-4.1.2-cp37-abi3-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf26ec53ccf5cadc81891d53cf0c117cff0f973d98cab6e9d6979578ca5aceeb",
                "md5": "2be091b9f86282ae1cd68e8b827b1346",
                "sha256": "b8df79979c5bae07f1db22dcc49cc5bccf08a0380ca5c6f391cbb5790355c0b0"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp37-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2be091b9f86282ae1cd68e8b827b1346",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 750035,
            "upload_time": "2023-12-15T14:52:54",
            "upload_time_iso_8601": "2023-12-15T14:52:54.829717Z",
            "url": "https://files.pythonhosted.org/packages/bf/26/ec53ccf5cadc81891d53cf0c117cff0f973d98cab6e9d6979578ca5aceeb/bcrypt-4.1.2-cp37-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0dfa1ac4188ee865236aba0a747773985a0f39211037f75a2d881a3be206a4e",
                "md5": "a1bbdd0e791925a3def974ae3ac53cb3",
                "sha256": "fbe188b878313d01b7718390f31528be4010fed1faa798c5a1d0469c9c48c369"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp37-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "a1bbdd0e791925a3def974ae3ac53cb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 171222,
            "upload_time": "2023-12-15T14:52:56",
            "upload_time_iso_8601": "2023-12-15T14:52:56.796371Z",
            "url": "https://files.pythonhosted.org/packages/b0/df/a1ac4188ee865236aba0a747773985a0f39211037f75a2d881a3be206a4e/bcrypt-4.1.2-cp37-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1c809eb0bd262b8b64f5ce99cb7f99984769fd1dbf35bdcd63d41a7b713c09f",
                "md5": "ce10696756e063f3f150aff87a4008cb",
                "sha256": "9800ae5bd5077b13725e2e3934aa3c9c37e49d3ea3d06318010aa40f54c63551"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp37-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ce10696756e063f3f150aff87a4008cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 158340,
            "upload_time": "2023-12-15T14:52:58",
            "upload_time_iso_8601": "2023-12-15T14:52:58.700612Z",
            "url": "https://files.pythonhosted.org/packages/a1/c8/09eb0bd262b8b64f5ce99cb7f99984769fd1dbf35bdcd63d41a7b713c09f/bcrypt-4.1.2-cp37-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a472a1276d2fbf5d1af0e29ff9fb5220ce1d49a5f94ccbfb4f9141c963ff9d0e",
                "md5": "69af2bbc8dbe19ea0969197d4936bcf1",
                "sha256": "71b8be82bc46cedd61a9f4ccb6c1a493211d031415a34adde3669ee1b0afbb63"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp39-abi3-macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "69af2bbc8dbe19ea0969197d4936bcf1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 528460,
            "upload_time": "2023-12-15T14:53:00",
            "upload_time_iso_8601": "2023-12-15T14:53:00.723388Z",
            "url": "https://files.pythonhosted.org/packages/a4/72/a1276d2fbf5d1af0e29ff9fb5220ce1d49a5f94ccbfb4f9141c963ff9d0e/bcrypt-4.1.2-cp39-abi3-macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42c413c4bba7e25633b2e94724c642aa93ce376c476d80ecd50d73f0fe2eb38f",
                "md5": "c2fbadf3f0da1f060c6bb9e7f1ae6e43",
                "sha256": "68e3c6642077b0c8092580c819c1684161262b2e30c4f45deb000c38947bf483"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c2fbadf3f0da1f060c6bb9e7f1ae6e43",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 695634,
            "upload_time": "2023-12-15T14:53:02",
            "upload_time_iso_8601": "2023-12-15T14:53:02.761843Z",
            "url": "https://files.pythonhosted.org/packages/42/c4/13c4bba7e25633b2e94724c642aa93ce376c476d80ecd50d73f0fe2eb38f/bcrypt-4.1.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "723d925adb5f5bef7616b504227a431fcaadd9630044802b5c81a31a560b4369",
                "md5": "2493690323dfff4cddc50775b3896284",
                "sha256": "387e7e1af9a4dd636b9505a465032f2f5cb8e61ba1120e79a0e1cd0b512f3dfc"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2493690323dfff4cddc50775b3896284",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 698763,
            "upload_time": "2023-12-15T14:53:04",
            "upload_time_iso_8601": "2023-12-15T14:53:04.781582Z",
            "url": "https://files.pythonhosted.org/packages/72/3d/925adb5f5bef7616b504227a431fcaadd9630044802b5c81a31a560b4369/bcrypt-4.1.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b61b1c1cf4efe142dfe6fab912c16766d3eab65b87f33f1d13a08238afce5fdf",
                "md5": "ac09da74bfa9efd8f0424a56c0f05697",
                "sha256": "f70d9c61f9c4ca7d57f3bfe88a5ccf62546ffbadf3681bb1e268d9d2e41c91a7"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp39-abi3-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ac09da74bfa9efd8f0424a56c0f05697",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 695781,
            "upload_time": "2023-12-15T14:53:06",
            "upload_time_iso_8601": "2023-12-15T14:53:06.858322Z",
            "url": "https://files.pythonhosted.org/packages/b6/1b/1c1cf4efe142dfe6fab912c16766d3eab65b87f33f1d13a08238afce5fdf/bcrypt-4.1.2-cp39-abi3-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "429da88027b5a8752f4b1831d957470f48e23cebc112aaf762880f3adbfba9cf",
                "md5": "d747158346c4a136704dea462f57f87e",
                "sha256": "2a298db2a8ab20056120b45e86c00a0a5eb50ec4075b6142db35f593b97cb3fb"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp39-abi3-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d747158346c4a136704dea462f57f87e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 698875,
            "upload_time": "2023-12-15T14:53:09",
            "upload_time_iso_8601": "2023-12-15T14:53:09.013604Z",
            "url": "https://files.pythonhosted.org/packages/42/9d/a88027b5a8752f4b1831d957470f48e23cebc112aaf762880f3adbfba9cf/bcrypt-4.1.2-cp39-abi3-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05766232380b99d85a2154ae06966b4bf6ce805878a7a92c3211295063b0b6be",
                "md5": "b44aae60b6fc014b919d44720c7cf17e",
                "sha256": "ba55e40de38a24e2d78d34c2d36d6e864f93e0d79d0b6ce915e4335aa81d01b1"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp39-abi3-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b44aae60b6fc014b919d44720c7cf17e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 725674,
            "upload_time": "2023-12-15T14:53:10",
            "upload_time_iso_8601": "2023-12-15T14:53:10.436062Z",
            "url": "https://files.pythonhosted.org/packages/05/76/6232380b99d85a2154ae06966b4bf6ce805878a7a92c3211295063b0b6be/bcrypt-4.1.2-cp39-abi3-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "acc5243674ec98288af9da31f5b137686746986d5d298dc520e243032160fd1b",
                "md5": "f88d173490c2fc695e1c626e617de430",
                "sha256": "3566a88234e8de2ccae31968127b0ecccbb4cddb629da744165db72b58d88ca4"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp39-abi3-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f88d173490c2fc695e1c626e617de430",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 729832,
            "upload_time": "2023-12-15T14:53:12",
            "upload_time_iso_8601": "2023-12-15T14:53:12.391834Z",
            "url": "https://files.pythonhosted.org/packages/ac/c5/243674ec98288af9da31f5b137686746986d5d298dc520e243032160fd1b/bcrypt-4.1.2-cp39-abi3-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "88fd6025f5530e6ac2513404aa2ab3fb935b9d992dbf24f255f03b5972dace74",
                "md5": "2629391c378004386361d4694e2eec57",
                "sha256": "b90e216dc36864ae7132cb151ffe95155a37a14e0de3a8f64b49655dd959ff9c"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp39-abi3-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2629391c378004386361d4694e2eec57",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 732222,
            "upload_time": "2023-12-15T14:53:14",
            "upload_time_iso_8601": "2023-12-15T14:53:14.133039Z",
            "url": "https://files.pythonhosted.org/packages/88/fd/6025f5530e6ac2513404aa2ab3fb935b9d992dbf24f255f03b5972dace74/bcrypt-4.1.2-cp39-abi3-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8523756228cbc426049c264c86d163ec1b4fb1b06114f26b25fb63132af56126",
                "md5": "f953fc209619f6ebbaf25e7ee041bb98",
                "sha256": "69057b9fc5093ea1ab00dd24ede891f3e5e65bee040395fb1e66ee196f9c9b4a"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp39-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f953fc209619f6ebbaf25e7ee041bb98",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 749705,
            "upload_time": "2023-12-15T14:53:15",
            "upload_time_iso_8601": "2023-12-15T14:53:15.563480Z",
            "url": "https://files.pythonhosted.org/packages/85/23/756228cbc426049c264c86d163ec1b4fb1b06114f26b25fb63132af56126/bcrypt-4.1.2-cp39-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca9eabc56ba85897eeca1f3755343a7b6b55f63c048516ebc5790145a7cdfddb",
                "md5": "42d0dfe2ebd677c0c4c60e472b60abb4",
                "sha256": "02d9ef8915f72dd6daaef40e0baeef8a017ce624369f09754baf32bb32dba25f"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp39-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "42d0dfe2ebd677c0c4c60e472b60abb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 170970,
            "upload_time": "2023-12-15T14:53:17",
            "upload_time_iso_8601": "2023-12-15T14:53:17.084524Z",
            "url": "https://files.pythonhosted.org/packages/ca/9e/abc56ba85897eeca1f3755343a7b6b55f63c048516ebc5790145a7cdfddb/bcrypt-4.1.2-cp39-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "535b73803e5bf877e07739deaeecb2e356f4cc9ae3b766558959a898f7a993e0",
                "md5": "0a62c788146fc47bbee9777ec6fa16b4",
                "sha256": "be3ab1071662f6065899fe08428e45c16aa36e28bc42921c4901a191fda6ee42"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-cp39-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0a62c788146fc47bbee9777ec6fa16b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 158307,
            "upload_time": "2023-12-15T14:53:18",
            "upload_time_iso_8601": "2023-12-15T14:53:18.422178Z",
            "url": "https://files.pythonhosted.org/packages/53/5b/73803e5bf877e07739deaeecb2e356f4cc9ae3b766558959a898f7a993e0/bcrypt-4.1.2-cp39-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54a8db407b90ccecb5a78386b360f9471ee733882f513ee364f2fba99a35eb1e",
                "md5": "06951044884af96d79c8c850f01f0406",
                "sha256": "d75fc8cd0ba23f97bae88a6ec04e9e5351ff3c6ad06f38fe32ba50cbd0d11946"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "06951044884af96d79c8c850f01f0406",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 695576,
            "upload_time": "2023-12-15T14:53:20",
            "upload_time_iso_8601": "2023-12-15T14:53:20.347275Z",
            "url": "https://files.pythonhosted.org/packages/54/a8/db407b90ccecb5a78386b360f9471ee733882f513ee364f2fba99a35eb1e/bcrypt-4.1.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c1ac2f1874578b3a79e3213745bad8a3bc4e20440eb15fa388e247e5e23a7c4",
                "md5": "52478024f2a70d16aedde0ee939a1460",
                "sha256": "a97e07e83e3262599434816f631cc4c7ca2aa8e9c072c1b1a7fec2ae809a1d2d"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "52478024f2a70d16aedde0ee939a1460",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 698510,
            "upload_time": "2023-12-15T14:53:21",
            "upload_time_iso_8601": "2023-12-15T14:53:21.637299Z",
            "url": "https://files.pythonhosted.org/packages/2c/1a/c2f1874578b3a79e3213745bad8a3bc4e20440eb15fa388e247e5e23a7c4/bcrypt-4.1.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "010c7ffee251454a198d387f4a197a03a12c9f5322e4082cb4915e8df8c04eff",
                "md5": "11be3b97c2b3deaaf91cede3dbea6185",
                "sha256": "e51c42750b7585cee7892c2614be0d14107fad9581d1738d954a262556dd1aab"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "11be3b97c2b3deaaf91cede3dbea6185",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 695564,
            "upload_time": "2023-12-15T14:53:23",
            "upload_time_iso_8601": "2023-12-15T14:53:23.152436Z",
            "url": "https://files.pythonhosted.org/packages/01/0c/7ffee251454a198d387f4a197a03a12c9f5322e4082cb4915e8df8c04eff/bcrypt-4.1.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d659831b66ba317496332d4e9e1a33bcdd14922d6cfecc411dc315a229b67127",
                "md5": "46aed6b8595106b62bc50e0643d7dccb",
                "sha256": "ba4e4cc26610581a6329b3937e02d319f5ad4b85b074846bf4fef8a8cf51e7bb"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46aed6b8595106b62bc50e0643d7dccb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 698384,
            "upload_time": "2023-12-15T14:53:24",
            "upload_time_iso_8601": "2023-12-15T14:53:24.730015Z",
            "url": "https://files.pythonhosted.org/packages/d6/59/831b66ba317496332d4e9e1a33bcdd14922d6cfecc411dc315a229b67127/bcrypt-4.1.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72076a6f2047a9dc9d012b7b977e4041d37d078b76b44b7ee4daf331c1e6fb35",
                "md5": "5ac5308e271ad9ad5f5a315e1525532b",
                "sha256": "33313a1200a3ae90b75587ceac502b048b840fc69e7f7a0905b5f87fac7a1258"
            },
            "downloads": -1,
            "filename": "bcrypt-4.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "5ac5308e271ad9ad5f5a315e1525532b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 26356,
            "upload_time": "2023-12-15T14:53:25",
            "upload_time_iso_8601": "2023-12-15T14:53:25.981089Z",
            "url": "https://files.pythonhosted.org/packages/72/07/6a6f2047a9dc9d012b7b977e4041d37d078b76b44b7ee4daf331c1e6fb35/bcrypt-4.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-15 14:53:25",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pyca",
    "github_project": "bcrypt",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "bcrypt"
}
        
Elapsed time: 0.15506s