cryptography


Namecryptography JSON
Version 42.0.4 PyPI version JSON
download
home_page
Summarycryptography is a package which provides cryptographic recipes and primitives to Python developers.
upload_time2024-02-21 03:07:29
maintainer
docs_urlNone
author
requires_python>=3.7
licenseApache-2.0 OR BSD-3-Clause
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            pyca/cryptography
=================

.. image:: https://img.shields.io/pypi/v/cryptography.svg
    :target: https://pypi.org/project/cryptography/
    :alt: Latest Version

.. image:: https://readthedocs.org/projects/cryptography/badge/?version=latest
    :target: https://cryptography.io
    :alt: Latest Docs

.. image:: https://github.com/pyca/cryptography/workflows/CI/badge.svg?branch=main
    :target: https://github.com/pyca/cryptography/actions?query=workflow%3ACI+branch%3Amain


``cryptography`` is a package which provides cryptographic recipes and
primitives to Python developers. Our goal is for it to be your "cryptographic
standard library". It supports Python 3.7+ and PyPy3 7.3.11+.

``cryptography`` includes both high level recipes and low level interfaces to
common cryptographic algorithms such as symmetric ciphers, message digests, and
key derivation functions. For example, to encrypt something with
``cryptography``'s high level symmetric encryption recipe:

.. code-block:: pycon

    >>> from cryptography.fernet import Fernet
    >>> # Put this somewhere safe!
    >>> key = Fernet.generate_key()
    >>> f = Fernet(key)
    >>> token = f.encrypt(b"A really secret message. Not for prying eyes.")
    >>> token
    b'...'
    >>> f.decrypt(token)
    b'A really secret message. Not for prying eyes.'

You can find more information in the `documentation`_.

You can install ``cryptography`` with:

.. code-block:: console

    $ pip install cryptography

For full details see `the installation documentation`_.

Discussion
~~~~~~~~~~

If you run into bugs, you can file them in our `issue tracker`_.

We maintain a `cryptography-dev`_ mailing list for development discussion.

You can also join ``#pyca`` on ``irc.libera.chat`` to ask questions or get
involved.

Security
~~~~~~~~

Need to report a security issue? Please consult our `security reporting`_
documentation.


.. _`documentation`: https://cryptography.io/
.. _`the installation documentation`: https://cryptography.io/en/latest/installation/
.. _`issue tracker`: https://github.com/pyca/cryptography/issues
.. _`cryptography-dev`: https://mail.python.org/mailman/listinfo/cryptography-dev
.. _`security reporting`: https://cryptography.io/en/latest/security/

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "cryptography",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "",
    "author_email": "The Python Cryptographic Authority and individual contributors <cryptography-dev@python.org>",
    "download_url": "https://files.pythonhosted.org/packages/81/d8/214d25515bf6034dce99aba22eeb47443b14c82160114e3d3f33067c6d3b/cryptography-42.0.4.tar.gz",
    "platform": null,
    "description": "pyca/cryptography\n=================\n\n.. image:: https://img.shields.io/pypi/v/cryptography.svg\n    :target: https://pypi.org/project/cryptography/\n    :alt: Latest Version\n\n.. image:: https://readthedocs.org/projects/cryptography/badge/?version=latest\n    :target: https://cryptography.io\n    :alt: Latest Docs\n\n.. image:: https://github.com/pyca/cryptography/workflows/CI/badge.svg?branch=main\n    :target: https://github.com/pyca/cryptography/actions?query=workflow%3ACI+branch%3Amain\n\n\n``cryptography`` is a package which provides cryptographic recipes and\nprimitives to Python developers. Our goal is for it to be your \"cryptographic\nstandard library\". It supports Python 3.7+ and PyPy3 7.3.11+.\n\n``cryptography`` includes both high level recipes and low level interfaces to\ncommon cryptographic algorithms such as symmetric ciphers, message digests, and\nkey derivation functions. For example, to encrypt something with\n``cryptography``'s high level symmetric encryption recipe:\n\n.. code-block:: pycon\n\n    >>> from cryptography.fernet import Fernet\n    >>> # Put this somewhere safe!\n    >>> key = Fernet.generate_key()\n    >>> f = Fernet(key)\n    >>> token = f.encrypt(b\"A really secret message. Not for prying eyes.\")\n    >>> token\n    b'...'\n    >>> f.decrypt(token)\n    b'A really secret message. Not for prying eyes.'\n\nYou can find more information in the `documentation`_.\n\nYou can install ``cryptography`` with:\n\n.. code-block:: console\n\n    $ pip install cryptography\n\nFor full details see `the installation documentation`_.\n\nDiscussion\n~~~~~~~~~~\n\nIf you run into bugs, you can file them in our `issue tracker`_.\n\nWe maintain a `cryptography-dev`_ mailing list for development discussion.\n\nYou can also join ``#pyca`` on ``irc.libera.chat`` to ask questions or get\ninvolved.\n\nSecurity\n~~~~~~~~\n\nNeed to report a security issue? Please consult our `security reporting`_\ndocumentation.\n\n\n.. _`documentation`: https://cryptography.io/\n.. _`the installation documentation`: https://cryptography.io/en/latest/installation/\n.. _`issue tracker`: https://github.com/pyca/cryptography/issues\n.. _`cryptography-dev`: https://mail.python.org/mailman/listinfo/cryptography-dev\n.. _`security reporting`: https://cryptography.io/en/latest/security/\n",
    "bugtrack_url": null,
    "license": "Apache-2.0 OR BSD-3-Clause",
    "summary": "cryptography is a package which provides cryptographic recipes and primitives to Python developers.",
    "version": "42.0.4",
    "project_urls": {
        "changelog": "https://cryptography.io/en/latest/changelog/",
        "documentation": "https://cryptography.io/",
        "homepage": "https://github.com/pyca/cryptography",
        "issues": "https://github.com/pyca/cryptography/issues",
        "source": "https://github.com/pyca/cryptography/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "088758a38f8f4d0fe388aaceec8d4b91644cc1edfe4fd3b9ccf5dad414f60738",
                "md5": "3a896183f48e8362078584ef08bc748b",
                "sha256": "ffc73996c4fca3d2b6c1c8c12bfd3ad00def8621da24f547626bf06441400449"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp37-abi3-macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "3a896183f48e8362078584ef08bc748b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5874004,
            "upload_time": "2024-02-21T03:06:15",
            "upload_time_iso_8601": "2024-02-21T03:06:15.711479Z",
            "url": "https://files.pythonhosted.org/packages/08/87/58a38f8f4d0fe388aaceec8d4b91644cc1edfe4fd3b9ccf5dad414f60738/cryptography-42.0.4-cp37-abi3-macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec3a2138a6246804d5d0b588031ad9795c7672317591a9ec2c5962cb65a912c3",
                "md5": "e0c3d8befbcc94ea5d68f7e9e46cb589",
                "sha256": "db4b65b02f59035037fde0998974d84244a64c3265bdef32a827ab9b63d61b18"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp37-abi3-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e0c3d8befbcc94ea5d68f7e9e46cb589",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 3098630,
            "upload_time": "2024-02-21T03:07:08",
            "upload_time_iso_8601": "2024-02-21T03:07:08.813525Z",
            "url": "https://files.pythonhosted.org/packages/ec/3a/2138a6246804d5d0b588031ad9795c7672317591a9ec2c5962cb65a912c3/cryptography-42.0.4-cp37-abi3-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "843df4e69dd3773826c12a7eeb7e7550616c0932e7c4cc3c677023964f137b46",
                "md5": "f2968bb5842989f9dd1874327024864a",
                "sha256": "dad9c385ba8ee025bb0d856714f71d7840020fe176ae0229de618f14dae7a6e2"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f2968bb5842989f9dd1874327024864a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4371589,
            "upload_time": "2024-02-21T03:06:56",
            "upload_time_iso_8601": "2024-02-21T03:06:56.874038Z",
            "url": "https://files.pythonhosted.org/packages/84/3d/f4e69dd3773826c12a7eeb7e7550616c0932e7c4cc3c677023964f137b46/cryptography-42.0.4-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fd16ca412147384b0b02cb343a3e8b7d3fde7ac6833c29fee9ca91f59ab5fdf",
                "md5": "e4d3b0cca3d6521829f35a7a0d549eda",
                "sha256": "69b22ab6506a3fe483d67d1ed878e1602bdd5912a134e6202c1ec672233241c1"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e4d3b0cca3d6521829f35a7a0d549eda",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4561822,
            "upload_time": "2024-02-21T03:06:41",
            "upload_time_iso_8601": "2024-02-21T03:06:41.423243Z",
            "url": "https://files.pythonhosted.org/packages/2f/d1/6ca412147384b0b02cb343a3e8b7d3fde7ac6833c29fee9ca91f59ab5fdf/cryptography-42.0.4-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bac8df35ce0519febdf46ebfab1a6ef1278c95a45b060a613fac57de64aa727e",
                "md5": "3de8dfcabfcb0746a8949ecdf20dcc72",
                "sha256": "e09469a2cec88fb7b078e16d4adec594414397e8879a4341c6ace96013463d5b"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp37-abi3-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3de8dfcabfcb0746a8949ecdf20dcc72",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4355915,
            "upload_time": "2024-02-21T03:06:34",
            "upload_time_iso_8601": "2024-02-21T03:06:34.924357Z",
            "url": "https://files.pythonhosted.org/packages/ba/c8/df35ce0519febdf46ebfab1a6ef1278c95a45b060a613fac57de64aa727e/cryptography-42.0.4-cp37-abi3-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35ede8ad5637b8ac1fd1b48fadb11dcf3649083af5c4298dfdc81d0382de9191",
                "md5": "5d4f0a02d8778d87bf9deca8058c1bff",
                "sha256": "3e970a2119507d0b104f0a8e281521ad28fc26f2820687b3436b8c9a5fcf20d1"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp37-abi3-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d4f0a02d8778d87bf9deca8058c1bff",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4573394,
            "upload_time": "2024-02-21T03:07:06",
            "upload_time_iso_8601": "2024-02-21T03:07:06.381403Z",
            "url": "https://files.pythonhosted.org/packages/35/ed/e8ad5637b8ac1fd1b48fadb11dcf3649083af5c4298dfdc81d0382de9191/cryptography-42.0.4-cp37-abi3-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2798c4a7fd53fd27619d5baa6102af7833543a8428479b81959942aeb98b278e",
                "md5": "23f01acd4f01f9691f129723741af00a",
                "sha256": "e53dc41cda40b248ebc40b83b31516487f7db95ab8ceac1f042626bc43a2f992"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp37-abi3-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "23f01acd4f01f9691f129723741af00a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4471747,
            "upload_time": "2024-02-21T03:06:18",
            "upload_time_iso_8601": "2024-02-21T03:06:18.099148Z",
            "url": "https://files.pythonhosted.org/packages/27/98/c4a7fd53fd27619d5baa6102af7833543a8428479b81959942aeb98b278e/cryptography-42.0.4-cp37-abi3-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4adc9beb49116370d8086a10d1dd0b5cbe7816efeebdfda414f3fd09a95b8525",
                "md5": "c34f274dcea24452613b27c3dac181f4",
                "sha256": "c3a5cbc620e1e17009f30dd34cb0d85c987afd21c41a74352d1719be33380885"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp37-abi3-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c34f274dcea24452613b27c3dac181f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4646204,
            "upload_time": "2024-02-21T03:06:50",
            "upload_time_iso_8601": "2024-02-21T03:06:50.630491Z",
            "url": "https://files.pythonhosted.org/packages/4a/dc/9beb49116370d8086a10d1dd0b5cbe7816efeebdfda414f3fd09a95b8525/cryptography-42.0.4-cp37-abi3-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0a8200e5afdb96ac3ebd4025dcc18cc43e73b1e4f6d839b7f2c9f1eb1a6a6c6",
                "md5": "497f75b67b36f16906c8d867eb87ad5c",
                "sha256": "6bfadd884e7280df24d26f2186e4e07556a05d37393b0f220a840b083dc6a824"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp37-abi3-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "497f75b67b36f16906c8d867eb87ad5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4444931,
            "upload_time": "2024-02-21T03:07:13",
            "upload_time_iso_8601": "2024-02-21T03:07:13.485130Z",
            "url": "https://files.pythonhosted.org/packages/c0/a8/200e5afdb96ac3ebd4025dcc18cc43e73b1e4f6d839b7f2c9f1eb1a6a6c6/cryptography-42.0.4-cp37-abi3-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d743bbe47d186ed91e3fa7ffb4426f39cb63d299842a9c600f4834530599bd4",
                "md5": "05bc59d8e83b009193e90aa5c2664c63",
                "sha256": "01911714117642a3f1792c7f376db572aadadbafcd8d75bb527166009c9f1d1b"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp37-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "05bc59d8e83b009193e90aa5c2664c63",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4645892,
            "upload_time": "2024-02-21T03:06:37",
            "upload_time_iso_8601": "2024-02-21T03:06:37.021987Z",
            "url": "https://files.pythonhosted.org/packages/9d/74/3bbe47d186ed91e3fa7ffb4426f39cb63d299842a9c600f4834530599bd4/cryptography-42.0.4-cp37-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b326d4907f82d2870959ad3dfc21f0a20b6501c143034d249df852281ae3543",
                "md5": "a92be39060908293f4e16c8368878292",
                "sha256": "fb0cef872d8193e487fc6bdb08559c3aa41b659a7d9be48b2e10747f47863925"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp37-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "a92be39060908293f4e16c8368878292",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2430337,
            "upload_time": "2024-02-21T03:06:43",
            "upload_time_iso_8601": "2024-02-21T03:06:43.879326Z",
            "url": "https://files.pythonhosted.org/packages/3b/32/6d4907f82d2870959ad3dfc21f0a20b6501c143034d249df852281ae3543/cryptography-42.0.4-cp37-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d37008b9cc6690e252541286fcfda770023a27aa0e1a1f8a1df52ee052c0494b",
                "md5": "b0e2cc40bc56835886186c8f31f41220",
                "sha256": "c1f25b252d2c87088abc8bbc4f1ecbf7c919e05508a7e8628e6875c40bc70923"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp37-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b0e2cc40bc56835886186c8f31f41220",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2885772,
            "upload_time": "2024-02-21T03:07:19",
            "upload_time_iso_8601": "2024-02-21T03:07:19.763978Z",
            "url": "https://files.pythonhosted.org/packages/d3/70/08b9cc6690e252541286fcfda770023a27aa0e1a1f8a1df52ee052c0494b/cryptography-42.0.4-cp37-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba71b9ed937252fad47d8d24746b876ca6f2dc31bd495e78f5b77a5082d73ae2",
                "md5": "e4518556979aa516dc00ea1784dc7190",
                "sha256": "15a1fb843c48b4a604663fa30af60818cd28f895572386e5f9b8a665874c26e7"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp39-abi3-macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "e4518556979aa516dc00ea1784dc7190",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5873636,
            "upload_time": "2024-02-21T03:06:55",
            "upload_time_iso_8601": "2024-02-21T03:06:55.038542Z",
            "url": "https://files.pythonhosted.org/packages/ba/71/b9ed937252fad47d8d24746b876ca6f2dc31bd495e78f5b77a5082d73ae2/cryptography-42.0.4-cp39-abi3-macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4461644e21048102cd72a13325fd6443db741746fbf0157e7c5d5c7628afc336",
                "md5": "a37aa15358220be79cc883e1a052d854",
                "sha256": "a1327f280c824ff7885bdeef8578f74690e9079267c1c8bd7dc5cc5aa065ae52"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a37aa15358220be79cc883e1a052d854",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4372889,
            "upload_time": "2024-02-21T03:06:25",
            "upload_time_iso_8601": "2024-02-21T03:06:25.409460Z",
            "url": "https://files.pythonhosted.org/packages/44/61/644e21048102cd72a13325fd6443db741746fbf0157e7c5d5c7628afc336/cryptography-42.0.4-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32c24ff3cf950504aa6ccd3db3712f515151536eea0cf6125442015b0532a46d",
                "md5": "b390a8fb608f888723badf7fb79837f7",
                "sha256": "6ffb03d419edcab93b4b19c22ee80c007fb2d708429cecebf1dd3258956a563a"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b390a8fb608f888723badf7fb79837f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4561544,
            "upload_time": "2024-02-21T03:06:20",
            "upload_time_iso_8601": "2024-02-21T03:06:20.715598Z",
            "url": "https://files.pythonhosted.org/packages/32/c2/4ff3cf950504aa6ccd3db3712f515151536eea0cf6125442015b0532a46d/cryptography-42.0.4-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ce118056b2c0e4ba031ea6b9d660bc2bdf491f7ef64ab7ef1a803a03a8b8d26",
                "md5": "7f2a0608d9380d2fc4aa59a89c6a888f",
                "sha256": "1df6fcbf60560d2113b5ed90f072dc0b108d64750d4cbd46a21ec882c7aefce9"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp39-abi3-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7f2a0608d9380d2fc4aa59a89c6a888f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4357160,
            "upload_time": "2024-02-21T03:07:22",
            "upload_time_iso_8601": "2024-02-21T03:07:22.468948Z",
            "url": "https://files.pythonhosted.org/packages/4c/e1/18056b2c0e4ba031ea6b9d660bc2bdf491f7ef64ab7ef1a803a03a8b8d26/cryptography-42.0.4-cp39-abi3-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e4581f378eb85aab14b229c1032ba3694eff85a3d75b35092c3e71abd2d34f6",
                "md5": "53cb0166012ed06d56b41c82550713e6",
                "sha256": "44a64043f743485925d3bcac548d05df0f9bb445c5fcca6681889c7c3ab12764"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp39-abi3-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "53cb0166012ed06d56b41c82550713e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4573002,
            "upload_time": "2024-02-21T03:07:04",
            "upload_time_iso_8601": "2024-02-21T03:07:04.598952Z",
            "url": "https://files.pythonhosted.org/packages/7e/45/81f378eb85aab14b229c1032ba3694eff85a3d75b35092c3e71abd2d34f6/cryptography-42.0.4-cp39-abi3-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eaa104733ecbe1e77a228c738f4ab321ca050e45284997f3e3a1539461cd4bca",
                "md5": "e5c0d4cf714d05d9c3a68baa5f745e98",
                "sha256": "3c6048f217533d89f2f8f4f0fe3044bf0b2090453b7b73d0b77db47b80af8dff"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp39-abi3-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e5c0d4cf714d05d9c3a68baa5f745e98",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4471962,
            "upload_time": "2024-02-21T03:06:12",
            "upload_time_iso_8601": "2024-02-21T03:06:12.027289Z",
            "url": "https://files.pythonhosted.org/packages/ea/a1/04733ecbe1e77a228c738f4ab321ca050e45284997f3e3a1539461cd4bca/cryptography-42.0.4-cp39-abi3-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "415d33f17e40dbb7441ad51e8a6920e726f68443cdbfb388cb8eff53e4b6ffd4",
                "md5": "b438252a68c63914ff4c3f9696c58f75",
                "sha256": "6d0fbe73728c44ca3a241eff9aefe6496ab2656d6e7a4ea2459865f2e8613257"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp39-abi3-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b438252a68c63914ff4c3f9696c58f75",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4646395,
            "upload_time": "2024-02-21T03:06:23",
            "upload_time_iso_8601": "2024-02-21T03:06:23.044705Z",
            "url": "https://files.pythonhosted.org/packages/41/5d/33f17e40dbb7441ad51e8a6920e726f68443cdbfb388cb8eff53e4b6ffd4/cryptography-42.0.4-cp39-abi3-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da561b2c8aa8e62bfb568022b68d77ebd2bd9afddea37898350fbfe008dcefa7",
                "md5": "502f68b24bd0dcdbc57e57c9a4fafe98",
                "sha256": "887623fe0d70f48ab3f5e4dbf234986b1329a64c066d719432d0698522749929"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp39-abi3-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "502f68b24bd0dcdbc57e57c9a4fafe98",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4445612,
            "upload_time": "2024-02-21T03:06:58",
            "upload_time_iso_8601": "2024-02-21T03:06:58.673473Z",
            "url": "https://files.pythonhosted.org/packages/da/56/1b2c8aa8e62bfb568022b68d77ebd2bd9afddea37898350fbfe008dcefa7/cryptography-42.0.4-cp39-abi3-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a28edac70232d4231c53448e29aa4b768cf82d891fcfd6e0caa7ace242da8c9b",
                "md5": "a8fd3a3c92370a542e6f0905e8d1f7b1",
                "sha256": "ce8613beaffc7c14f091497346ef117c1798c202b01153a8cc7b8e2ebaaf41c0"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp39-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a8fd3a3c92370a542e6f0905e8d1f7b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4646026,
            "upload_time": "2024-02-21T03:06:33",
            "upload_time_iso_8601": "2024-02-21T03:06:33.094581Z",
            "url": "https://files.pythonhosted.org/packages/a2/8e/dac70232d4231c53448e29aa4b768cf82d891fcfd6e0caa7ace242da8c9b/cryptography-42.0.4-cp39-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7d78b9d29cf3745b928a71b1f6c3c54366272d8d67181d1f056309992d19640",
                "md5": "b105a825267a784e623235b4dd2fd753",
                "sha256": "810bcf151caefc03e51a3d61e53335cd5c7316c0a105cc695f0959f2c638b129"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp39-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "b105a825267a784e623235b4dd2fd753",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2430620,
            "upload_time": "2024-02-21T03:07:17",
            "upload_time_iso_8601": "2024-02-21T03:07:17.818408Z",
            "url": "https://files.pythonhosted.org/packages/a7/d7/8b9d29cf3745b928a71b1f6c3c54366272d8d67181d1f056309992d19640/cryptography-42.0.4-cp39-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "afdfc220c1be23d1f0ee55f4d1589203936cfa221f95ac5d1b1b342109c1143e",
                "md5": "1a4d4f21cbe0cb1b43fb3ca2760f00d4",
                "sha256": "a0298bdc6e98ca21382afe914c642620370ce0470a01e1bef6dd9b5354c36854"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-cp39-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1a4d4f21cbe0cb1b43fb3ca2760f00d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2887348,
            "upload_time": "2024-02-21T03:06:27",
            "upload_time_iso_8601": "2024-02-21T03:06:27.929921Z",
            "url": "https://files.pythonhosted.org/packages/af/df/c220c1be23d1f0ee55f4d1589203936cfa221f95ac5d1b1b342109c1143e/cryptography-42.0.4-cp39-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17fe3a751a8cf7a21a4ab88a7da2be4b8eb2ea3997267a153caa19e7af1efef6",
                "md5": "f19b57a09f7897eab2f1ce61a1396c3c",
                "sha256": "5f8907fcf57392cd917892ae83708761c6ff3c37a8e835d7246ff0ad251d9298"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f19b57a09f7897eab2f1ce61a1396c3c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 2997290,
            "upload_time": "2024-02-21T03:06:45",
            "upload_time_iso_8601": "2024-02-21T03:06:45.624213Z",
            "url": "https://files.pythonhosted.org/packages/17/fe/3a751a8cf7a21a4ab88a7da2be4b8eb2ea3997267a153caa19e7af1efef6/cryptography-42.0.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0daa715911f4e14e204a040a68f26aba918ded78d537986a128a71dd15e8dac",
                "md5": "eefa014e1317e3b0aef73b7b7ad7ecfd",
                "sha256": "12d341bd42cdb7d4937b0cabbdf2a94f949413ac4504904d0cdbdce4a22cbf88"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eefa014e1317e3b0aef73b7b7ad7ecfd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 4285741,
            "upload_time": "2024-02-21T03:06:48",
            "upload_time_iso_8601": "2024-02-21T03:06:48.175245Z",
            "url": "https://files.pythonhosted.org/packages/e0/da/a715911f4e14e204a040a68f26aba918ded78d537986a128a71dd15e8dac/cryptography-42.0.4-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b75cbf78b545bc26f0ba9aa6d169bcba747de2ad34cbb1e1ed03844f760c77b",
                "md5": "b984d2ec46a5fd3bbcc617449ac91dc7",
                "sha256": "1cdcdbd117681c88d717437ada72bdd5be9de117f96e3f4d50dab3f59fd9ab20"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b984d2ec46a5fd3bbcc617449ac91dc7",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 4484596,
            "upload_time": "2024-02-21T03:06:30",
            "upload_time_iso_8601": "2024-02-21T03:06:30.554787Z",
            "url": "https://files.pythonhosted.org/packages/5b/75/cbf78b545bc26f0ba9aa6d169bcba747de2ad34cbb1e1ed03844f760c77b/cryptography-42.0.4-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0fcc3d328eda0b33270482bb7fdbf51aab8a1a32e14c31da5c007e9e2d130a0f",
                "md5": "854b773e4a5c34aab11df6e955d2d661",
                "sha256": "0e89f7b84f421c56e7ff69f11c441ebda73b8a8e6488d322ef71746224c20fce"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "854b773e4a5c34aab11df6e955d2d661",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 2800522,
            "upload_time": "2024-02-21T03:07:15",
            "upload_time_iso_8601": "2024-02-21T03:07:15.897757Z",
            "url": "https://files.pythonhosted.org/packages/0f/cc/3d328eda0b33270482bb7fdbf51aab8a1a32e14c31da5c007e9e2d130a0f/cryptography-42.0.4-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be774f11f8f46d197a080ebbda1a7842af70e1fdc3843136a76af752453a42b8",
                "md5": "9ac5da87ce04d35649c7a555e19ea4d0",
                "sha256": "f1e85a178384bf19e36779d91ff35c7617c885da487d689b05c1366f9933ad74"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9ac5da87ce04d35649c7a555e19ea4d0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 2997130,
            "upload_time": "2024-02-21T03:07:10",
            "upload_time_iso_8601": "2024-02-21T03:07:10.847160Z",
            "url": "https://files.pythonhosted.org/packages/be/77/4f11f8f46d197a080ebbda1a7842af70e1fdc3843136a76af752453a42b8/cryptography-42.0.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55e4b449c28f2b61a6101ec74c57176e69ffb20a2507f892431c0d4b9aee06e9",
                "md5": "614529625046d7136ee2b874e0cb99a1",
                "sha256": "d2a27aca5597c8a71abbe10209184e1a8e91c1fd470b5070a2ea60cafec35bcd"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "614529625046d7136ee2b874e0cb99a1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 4285867,
            "upload_time": "2024-02-21T03:07:24",
            "upload_time_iso_8601": "2024-02-21T03:07:24.445341Z",
            "url": "https://files.pythonhosted.org/packages/55/e4/b449c28f2b61a6101ec74c57176e69ffb20a2507f892431c0d4b9aee06e9/cryptography-42.0.4-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "afb10fc52c16683e1bc028ed2c916dcae365d591da51f447d51861f82785590e",
                "md5": "68e6fee90ed20cbbe7c5ea89b25f729a",
                "sha256": "4e36685cb634af55e0677d435d425043967ac2f3790ec652b2b88ad03b85c27b"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "68e6fee90ed20cbbe7c5ea89b25f729a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 4485330,
            "upload_time": "2024-02-21T03:06:52",
            "upload_time_iso_8601": "2024-02-21T03:06:52.633011Z",
            "url": "https://files.pythonhosted.org/packages/af/b1/0fc52c16683e1bc028ed2c916dcae365d591da51f447d51861f82785590e/cryptography-42.0.4-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31fcb9b98cda894cac4248472244b84f66d648a098c69d92553a5f09797d9033",
                "md5": "ab1ed14229cf1a8570114c31700d2558",
                "sha256": "f47be41843200f7faec0683ad751e5ef11b9a56a220d57f300376cd8aba81660"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ab1ed14229cf1a8570114c31700d2558",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 2800508,
            "upload_time": "2024-02-21T03:06:39",
            "upload_time_iso_8601": "2024-02-21T03:06:39.462412Z",
            "url": "https://files.pythonhosted.org/packages/31/fc/b9b98cda894cac4248472244b84f66d648a098c69d92553a5f09797d9033/cryptography-42.0.4-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81d8214d25515bf6034dce99aba22eeb47443b14c82160114e3d3f33067c6d3b",
                "md5": "8fd5dc8004755eb04b983352fb818992",
                "sha256": "831a4b37accef30cccd34fcb916a5d7b5be3cbbe27268a02832c3e450aea39cb"
            },
            "downloads": -1,
            "filename": "cryptography-42.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "8fd5dc8004755eb04b983352fb818992",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 670311,
            "upload_time": "2024-02-21T03:07:29",
            "upload_time_iso_8601": "2024-02-21T03:07:29.752204Z",
            "url": "https://files.pythonhosted.org/packages/81/d8/214d25515bf6034dce99aba22eeb47443b14c82160114e3d3f33067c6d3b/cryptography-42.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-21 03:07:29",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pyca",
    "github_project": "cryptography",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "cryptography"
}
        
Elapsed time: 0.20127s