Funktionierender Prototyp des Serious Games zur Vermittlung von Wissen zu Software-Engineering-Arbeitsmodellen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

METADATA 5.1KB

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