|
576 | 576 | "type": "pypi", |
577 | 577 | "namespace": null, |
578 | 578 | "name": "cryptography", |
579 | | - "version": "45.0.7", |
| 579 | + "version": "46.0.0", |
580 | 580 | "qualifiers": {}, |
581 | 581 | "subpath": null, |
582 | 582 | "primary_language": "Python", |
583 | | - "description": "cryptography is a package which provides cryptographic recipes and primitives to Python developers.\npyca/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/", |
584 | | - "release_date": "2025-09-01T11:14:24", |
| 583 | + "description": "cryptography is a package which provides cryptographic recipes and primitives to Python developers.\npyca/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/actions/workflows/ci.yml/badge.svg\n :target: https://github.com/pyca/cryptography/actions/workflows/ci.yml?query=branch%3Amain\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.8+ 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/", |
| 584 | + "release_date": "2025-09-16T21:07:03", |
585 | 585 | "parties": [ |
586 | 586 | { |
587 | 587 | "type": "person", |
588 | 588 | "role": "author", |
589 | | - "name": "The cryptography developers <[email protected]>", |
| 589 | + "name": null, |
590 | 590 | "email": "The Python Cryptographic Authority and individual contributors <[email protected]>", |
591 | 591 | "url": null |
592 | 592 | } |
|
607 | 607 | "Programming Language :: Python :: 3.11", |
608 | 608 | "Programming Language :: Python :: 3.12", |
609 | 609 | "Programming Language :: Python :: 3.13", |
610 | | - "Programming Language :: Python :: 3.7", |
| 610 | + "Programming Language :: Python :: 3.14", |
611 | 611 | "Programming Language :: Python :: 3.8", |
612 | 612 | "Programming Language :: Python :: 3.9", |
| 613 | + "Programming Language :: Python :: Free Threading :: 3 - Stable", |
613 | 614 | "Programming Language :: Python :: Implementation :: CPython", |
614 | 615 | "Programming Language :: Python :: Implementation :: PyPy", |
615 | 616 | "Topic :: Security :: Cryptography" |
616 | 617 | ], |
617 | 618 | "homepage_url": null, |
618 | | - "download_url": "https://files.pythonhosted.org/packages/eb/ac/59b7790b4ccaed739fc44775ce4645c9b8ce54cbec53edf16c74fd80cb2b/cryptography-45.0.7-cp37-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", |
619 | | - "size": 4423075, |
| 619 | + "download_url": "https://files.pythonhosted.org/packages/da/94/f1c1f30110c05fa5247bf460b17acfd52fa3f5c77e94ba19cff8957dc5e6/cryptography-46.0.0-cp38-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", |
| 620 | + "size": 4562561, |
620 | 621 | "sha1": null, |
621 | | - "md5": "d7c4a989694c8af7d27560ff4125516f", |
622 | | - "sha256": "3994c809c17fc570c2af12c9b840d7cea85a9fd3e5c0e0491f4fa3c029216d59", |
| 622 | + "md5": "4fe77bef21236be92883b98ea2b89580", |
| 623 | + "sha256": "c3cd09b1490c1509bf3892bde9cef729795fae4a2fee0621f19be3321beca7e4", |
623 | 624 | "sha512": null, |
624 | 625 | "bug_tracking_url": null, |
625 | 626 | "code_view_url": null, |
626 | 627 | "vcs_url": null, |
627 | 628 | "copyright": null, |
628 | | - "license_expression": null, |
629 | | - "declared_license": { |
630 | | - "license": "Apache-2.0 OR BSD-3-Clause" |
631 | | - }, |
| 629 | + "license_expression": "Apache-2.0 OR BSD-3-Clause", |
| 630 | + "declared_license": {}, |
632 | 631 | "notice_text": null, |
633 | 632 | "source_packages": [], |
634 | 633 | "file_references": [], |
635 | 634 | "extra_data": {}, |
636 | 635 | "dependencies": [], |
637 | 636 | "repository_homepage_url": null, |
638 | 637 | "repository_download_url": null, |
639 | | - "api_data_url": "https://pypi.org/pypi/cryptography/45.0.7/json", |
| 638 | + "api_data_url": "https://pypi.org/pypi/cryptography/46.0.0/json", |
640 | 639 | "datasource_id": null, |
641 | | - "purl": "pkg:pypi/cryptography@45.0.7" |
| 640 | + "purl": "pkg:pypi/cryptography@46.0.0" |
642 | 641 | }, |
643 | 642 | { |
644 | 643 | "type": "pypi", |
|
1328 | 1327 | "package": "pkg:pypi/[email protected]", |
1329 | 1328 | "dependencies": [ |
1330 | 1329 | |
1331 | | - "pkg:pypi/cryptography@45.0.7", |
| 1330 | + "pkg:pypi/cryptography@46.0.0", |
1332 | 1331 | |
1333 | 1332 | |
1334 | 1333 | ] |
|
1352 | 1351 | "dependencies": [] |
1353 | 1352 | }, |
1354 | 1353 | { |
1355 | | - "package": "pkg:pypi/cryptography@45.0.7", |
| 1354 | + "package": "pkg:pypi/cryptography@46.0.0", |
1356 | 1355 | "dependencies": [ |
1357 | | - |
| 1356 | + |
| 1357 | + |
1358 | 1358 | ] |
1359 | 1359 | }, |
1360 | 1360 | { |
|
0 commit comments