METADATA 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. Metadata-Version: 2.1
  2. Name: rsa
  3. Version: 4.5
  4. Summary: Pure-Python RSA implementation
  5. Home-page: https://stuvel.eu/rsa
  6. Author: Sybren A. Stuvel
  7. Author-email: sybren@stuvel.eu
  8. Maintainer: Sybren A. Stuvel
  9. Maintainer-email: sybren@stuvel.eu
  10. License: ASL 2
  11. Platform: UNKNOWN
  12. Classifier: Development Status :: 5 - Production/Stable
  13. Classifier: Intended Audience :: Developers
  14. Classifier: Intended Audience :: Education
  15. Classifier: Intended Audience :: Information Technology
  16. Classifier: License :: OSI Approved :: Apache Software License
  17. Classifier: Operating System :: OS Independent
  18. Classifier: Programming Language :: Python
  19. Classifier: Programming Language :: Python :: 2
  20. Classifier: Programming Language :: Python :: 2.7
  21. Classifier: Programming Language :: Python :: 3
  22. Classifier: Programming Language :: Python :: 3.5
  23. Classifier: Programming Language :: Python :: 3.6
  24. Classifier: Programming Language :: Python :: 3.7
  25. Classifier: Programming Language :: Python :: Implementation :: CPython
  26. Classifier: Programming Language :: Python :: Implementation :: PyPy
  27. Classifier: Topic :: Security :: Cryptography
  28. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4
  29. Description-Content-Type: text/markdown
  30. Requires-Dist: pyasn1 (>=0.1.3)
  31. Pure Python RSA implementation
  32. ==============================
  33. [![PyPI](https://img.shields.io/pypi/v/rsa.svg)](https://pypi.org/project/rsa/)
  34. [![Build Status](https://travis-ci.org/sybrenstuvel/python-rsa.svg?branch=master)](https://travis-ci.org/sybrenstuvel/python-rsa)
  35. [![Coverage Status](https://coveralls.io/repos/github/sybrenstuvel/python-rsa/badge.svg?branch=master)](https://coveralls.io/github/sybrenstuvel/python-rsa?branch=master)
  36. [![Code Climate](https://img.shields.io/codeclimate/github/sybrenstuvel/python-rsa.svg)](https://codeclimate.com/github/sybrenstuvel/python-rsa)
  37. [Python-RSA](https://stuvel.eu/rsa) is a pure-Python RSA implementation. It supports
  38. encryption and decryption, signing and verifying signatures, and key
  39. generation according to PKCS#1 version 1.5. It can be used as a Python
  40. library as well as on the commandline. The code was mostly written by
  41. Sybren A. Stüvel.
  42. Documentation can be found at the [Python-RSA homepage](https://stuvel.eu/rsa).
  43. Download and install using:
  44. pip install rsa
  45. or download it from the [Python Package Index](https://pypi.org/project/rsa/).
  46. The source code is maintained at [GitHub](https://github.com/sybrenstuvel/python-rsa/) and is
  47. licensed under the [Apache License, version 2.0](https://www.apache.org/licenses/LICENSE-2.0)
  48. Changes in 4.1-4.4
  49. ------------------
  50. Version 4.1 dropped support for Python 2.7, and soon after that version 4.2 was released. Neither of the two made it explicit in `setup.cfg` that Python 3.5 or newer is required. This caused issues on Python 2.7, as Pip happily upgraded to the new version.
  51. Version 4.3 is a re-tagged release of version 4.0. It is the last to support Python 2.7.
  52. Version 4.4 will be a re-tagged release of version 4.2, and explicitly require Python 3.5 or newer.
  53. Major changes in 4.0
  54. --------------------
  55. Version 3.4 was the last version in the 3.x range. Version 4.0 drops the following modules,
  56. as they are insecure:
  57. - `rsa._version133`
  58. - `rsa._version200`
  59. - `rsa.bigfile`
  60. - `rsa.varblock`
  61. Those modules were marked as deprecated in version 3.4.
  62. Furthermore, in 4.0 the I/O functions is streamlined to always work with bytes on all
  63. supported versions of Python.
  64. Version 4.0 drops support for Python 2.6 and 3.3.