PKG-INFO 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. Metadata-Version: 1.1
  2. Name: cryptography
  3. Version: 2.1.4
  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 cryptography developers
  7. Author-email: cryptography-dev@python.org
  8. License: BSD or Apache License, Version 2.0
  9. Description-Content-Type: UNKNOWN
  10. Description: pyca/cryptography
  11. =================
  12. .. image:: https://img.shields.io/pypi/v/cryptography.svg
  13. :target: https://pypi.python.org/pypi/cryptography/
  14. :alt: Latest Version
  15. .. image:: https://readthedocs.org/projects/cryptography/badge/?version=latest
  16. :target: https://cryptography.io
  17. :alt: Latest Docs
  18. .. image:: https://travis-ci.org/pyca/cryptography.svg?branch=master
  19. :target: https://travis-ci.org/pyca/cryptography
  20. .. image:: https://codecov.io/github/pyca/cryptography/coverage.svg?branch=master
  21. :target: https://codecov.io/github/pyca/cryptography?branch=master
  22. ``cryptography`` is a package which provides cryptographic recipes and
  23. primitives to Python developers. Our goal is for it to be your "cryptographic
  24. standard library". It supports Python 2.6-2.7, Python 3.4+, and PyPy 5.3+.
  25. ``cryptography`` includes both high level recipes and low level interfaces to
  26. common cryptographic algorithms such as symmetric ciphers, message digests, and
  27. key derivation functions. For example, to encrypt something with
  28. ``cryptography``'s high level symmetric encryption recipe:
  29. .. code-block:: pycon
  30. >>> from cryptography.fernet import Fernet
  31. >>> # Put this somewhere safe!
  32. >>> key = Fernet.generate_key()
  33. >>> f = Fernet(key)
  34. >>> token = f.encrypt(b"A really secret message. Not for prying eyes.")
  35. >>> token
  36. '...'
  37. >>> f.decrypt(token)
  38. 'A really secret message. Not for prying eyes.'
  39. You can find more information in the `documentation`_.
  40. You can install ``cryptography`` with:
  41. .. code-block:: console
  42. $ pip install cryptography
  43. For full details see `the installation documentation`_.
  44. Discussion
  45. ~~~~~~~~~~
  46. If you run into bugs, you can file them in our `issue tracker`_.
  47. We maintain a `cryptography-dev`_ mailing list for development discussion.
  48. You can also join ``#cryptography-dev`` on Freenode to ask questions or get
  49. involved.
  50. .. _`documentation`: https://cryptography.io/
  51. .. _`the installation documentation`: https://cryptography.io/en/latest/installation/
  52. .. _`issue tracker`: https://github.com/pyca/cryptography/issues
  53. .. _`cryptography-dev`: https://mail.python.org/mailman/listinfo/cryptography-dev
  54. Platform: UNKNOWN
  55. Classifier: Intended Audience :: Developers
  56. Classifier: License :: OSI Approved :: Apache Software License
  57. Classifier: License :: OSI Approved :: BSD License
  58. Classifier: Natural Language :: English
  59. Classifier: Operating System :: MacOS :: MacOS X
  60. Classifier: Operating System :: POSIX
  61. Classifier: Operating System :: POSIX :: BSD
  62. Classifier: Operating System :: POSIX :: Linux
  63. Classifier: Operating System :: Microsoft :: Windows
  64. Classifier: Programming Language :: Python
  65. Classifier: Programming Language :: Python :: 2
  66. Classifier: Programming Language :: Python :: 2.6
  67. Classifier: Programming Language :: Python :: 2.7
  68. Classifier: Programming Language :: Python :: 3
  69. Classifier: Programming Language :: Python :: 3.4
  70. Classifier: Programming Language :: Python :: 3.5
  71. Classifier: Programming Language :: Python :: 3.6
  72. Classifier: Programming Language :: Python :: Implementation :: CPython
  73. Classifier: Programming Language :: Python :: Implementation :: PyPy
  74. Classifier: Topic :: Security :: Cryptography