METADATA 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. Metadata-Version: 2.1
  2. Name: cryptography
  3. Version: 39.0.0
  4. Summary: cryptography is a package which provides cryptographic recipes and primitives to Python developers.
  5. Home-page: https://github.com/pyca/cryptography
  6. Author: The Python Cryptographic Authority and individual contributors
  7. Author-email: cryptography-dev@python.org
  8. License: (Apache-2.0 OR BSD-3-Clause) AND PSF-2.0
  9. Project-URL: Documentation, https://cryptography.io/
  10. Project-URL: Source, https://github.com/pyca/cryptography/
  11. Project-URL: Issues, https://github.com/pyca/cryptography/issues
  12. Project-URL: Changelog, https://cryptography.io/en/latest/changelog/
  13. Classifier: Development Status :: 5 - Production/Stable
  14. Classifier: Intended Audience :: Developers
  15. Classifier: License :: OSI Approved :: Apache Software License
  16. Classifier: License :: OSI Approved :: BSD License
  17. Classifier: Natural Language :: English
  18. Classifier: Operating System :: MacOS :: MacOS X
  19. Classifier: Operating System :: POSIX
  20. Classifier: Operating System :: POSIX :: BSD
  21. Classifier: Operating System :: POSIX :: Linux
  22. Classifier: Operating System :: Microsoft :: Windows
  23. Classifier: Programming Language :: Python
  24. Classifier: Programming Language :: Python :: 3
  25. Classifier: Programming Language :: Python :: 3 :: Only
  26. Classifier: Programming Language :: Python :: 3.6
  27. Classifier: Programming Language :: Python :: 3.7
  28. Classifier: Programming Language :: Python :: 3.8
  29. Classifier: Programming Language :: Python :: 3.9
  30. Classifier: Programming Language :: Python :: 3.10
  31. Classifier: Programming Language :: Python :: 3.11
  32. Classifier: Programming Language :: Python :: Implementation :: CPython
  33. Classifier: Programming Language :: Python :: Implementation :: PyPy
  34. Classifier: Topic :: Security :: Cryptography
  35. Requires-Python: >=3.6
  36. Description-Content-Type: text/x-rst
  37. License-File: LICENSE
  38. License-File: LICENSE.APACHE
  39. License-File: LICENSE.BSD
  40. License-File: LICENSE.PSF
  41. Requires-Dist: cffi (>=1.12)
  42. Provides-Extra: docs
  43. Requires-Dist: sphinx (!=1.8.0,!=3.1.0,!=3.1.1,!=5.2.0,!=5.2.0.post0,>=1.6.5) ; extra == 'docs'
  44. Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
  45. Provides-Extra: docstest
  46. Requires-Dist: pyenchant (>=1.6.11) ; extra == 'docstest'
  47. Requires-Dist: twine (>=1.12.0) ; extra == 'docstest'
  48. Requires-Dist: sphinxcontrib-spelling (>=4.0.1) ; extra == 'docstest'
  49. Provides-Extra: pep8test
  50. Requires-Dist: black ; extra == 'pep8test'
  51. Requires-Dist: ruff ; extra == 'pep8test'
  52. Provides-Extra: sdist
  53. Requires-Dist: setuptools-rust (>=0.11.4) ; extra == 'sdist'
  54. Provides-Extra: ssh
  55. Requires-Dist: bcrypt (>=3.1.5) ; extra == 'ssh'
  56. Provides-Extra: test
  57. Requires-Dist: pytest (>=6.2.0) ; extra == 'test'
  58. Requires-Dist: pytest-benchmark ; extra == 'test'
  59. Requires-Dist: pytest-cov ; extra == 'test'
  60. Requires-Dist: pytest-subtests ; extra == 'test'
  61. Requires-Dist: pytest-xdist ; extra == 'test'
  62. Requires-Dist: pretend ; extra == 'test'
  63. Requires-Dist: iso8601 ; extra == 'test'
  64. Requires-Dist: pytz ; extra == 'test'
  65. Requires-Dist: hypothesis (!=3.79.2,>=1.11.4) ; extra == 'test'
  66. pyca/cryptography
  67. =================
  68. .. image:: https://img.shields.io/pypi/v/cryptography.svg
  69. :target: https://pypi.org/project/cryptography/
  70. :alt: Latest Version
  71. .. image:: https://readthedocs.org/projects/cryptography/badge/?version=latest
  72. :target: https://cryptography.io
  73. :alt: Latest Docs
  74. .. image:: https://github.com/pyca/cryptography/workflows/CI/badge.svg?branch=main
  75. :target: https://github.com/pyca/cryptography/actions?query=workflow%3ACI+branch%3Amain
  76. ``cryptography`` is a package which provides cryptographic recipes and
  77. primitives to Python developers. Our goal is for it to be your "cryptographic
  78. standard library". It supports Python 3.6+ and PyPy3 7.2+.
  79. ``cryptography`` includes both high level recipes and low level interfaces to
  80. common cryptographic algorithms such as symmetric ciphers, message digests, and
  81. key derivation functions. For example, to encrypt something with
  82. ``cryptography``'s high level symmetric encryption recipe:
  83. .. code-block:: pycon
  84. >>> from cryptography.fernet import Fernet
  85. >>> # Put this somewhere safe!
  86. >>> key = Fernet.generate_key()
  87. >>> f = Fernet(key)
  88. >>> token = f.encrypt(b"A really secret message. Not for prying eyes.")
  89. >>> token
  90. b'...'
  91. >>> f.decrypt(token)
  92. b'A really secret message. Not for prying eyes.'
  93. You can find more information in the `documentation`_.
  94. You can install ``cryptography`` with:
  95. .. code-block:: console
  96. $ pip install cryptography
  97. For full details see `the installation documentation`_.
  98. Discussion
  99. ~~~~~~~~~~
  100. If you run into bugs, you can file them in our `issue tracker`_.
  101. We maintain a `cryptography-dev`_ mailing list for development discussion.
  102. You can also join ``#pyca`` on ``irc.libera.chat`` to ask questions or get
  103. involved.
  104. Security
  105. ~~~~~~~~
  106. Need to report a security issue? Please consult our `security reporting`_
  107. documentation.
  108. .. _`documentation`: https://cryptography.io/
  109. .. _`the installation documentation`: https://cryptography.io/en/latest/installation/
  110. .. _`issue tracker`: https://github.com/pyca/cryptography/issues
  111. .. _`cryptography-dev`: https://mail.python.org/mailman/listinfo/cryptography-dev
  112. .. _`security reporting`: https://cryptography.io/en/latest/security/