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.

80 lines
3.1 KiB

  1. Metadata-Version: 2.1
  2. Name: rsa
  3. Version: 4.6
  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 :: 3
  20. Classifier: Programming Language :: Python :: 3.5
  21. Classifier: Programming Language :: Python :: 3.6
  22. Classifier: Programming Language :: Python :: 3.7
  23. Classifier: Programming Language :: Python :: 3.8
  24. Classifier: Programming Language :: Python :: Implementation :: CPython
  25. Classifier: Programming Language :: Python :: Implementation :: PyPy
  26. Classifier: Topic :: Security :: Cryptography
  27. Requires-Python: >=3.5, <4
  28. Description-Content-Type: text/markdown
  29. Requires-Dist: pyasn1 (>=0.1.3)
  30. Pure Python RSA implementation
  31. ==============================
  32. [![PyPI](https://img.shields.io/pypi/v/rsa.svg)](https://pypi.org/project/rsa/)
  33. [![Build Status](https://travis-ci.org/sybrenstuvel/python-rsa.svg?branch=master)](https://travis-ci.org/sybrenstuvel/python-rsa)
  34. [![Coverage Status](https://coveralls.io/repos/github/sybrenstuvel/python-rsa/badge.svg?branch=master)](https://coveralls.io/github/sybrenstuvel/python-rsa?branch=master)
  35. [![Code Climate](https://api.codeclimate.com/v1/badges/a99a88d28ad37a79dbf6/maintainability)](https://codeclimate.com/github/codeclimate/codeclimate/maintainability)
  36. [Python-RSA](https://stuvel.eu/rsa) is a pure-Python RSA implementation. It supports
  37. encryption and decryption, signing and verifying signatures, and key
  38. generation according to PKCS#1 version 1.5. It can be used as a Python
  39. library as well as on the commandline. The code was mostly written by
  40. Sybren A. Stüvel.
  41. Documentation can be found at the [Python-RSA homepage](https://stuvel.eu/rsa). For all changes, check [the changelog](https://github.com/sybrenstuvel/python-rsa/blob/master/CHANGELOG.md).
  42. Download and install using:
  43. pip install rsa
  44. or download it from the [Python Package Index](https://pypi.org/project/rsa/).
  45. The source code is maintained at [GitHub](https://github.com/sybrenstuvel/python-rsa/) and is
  46. licensed under the [Apache License, version 2.0](https://www.apache.org/licenses/LICENSE-2.0)
  47. Major changes in 4.1
  48. --------------------
  49. Version 4.0 was the last version to support Python 2 and 3.4. Version 4.1 is compatible with Python 3.5+ only.
  50. Major changes in 4.0
  51. --------------------
  52. Version 3.4 was the last version in the 3.x range. Version 4.0 drops the following modules,
  53. as they are insecure:
  54. - `rsa._version133`
  55. - `rsa._version200`
  56. - `rsa.bigfile`
  57. - `rsa.varblock`
  58. Those modules were marked as deprecated in version 3.4.
  59. Furthermore, in 4.0 the I/O functions is streamlined to always work with bytes on all
  60. supported versions of Python.
  61. Version 4.0 drops support for Python 2.6 and 3.3.