DESCRIPTION.rst 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. Pure Python RSA implementation
  2. ==============================
  3. [![PyPI](https://img.shields.io/pypi/v/rsa.svg)](https://pypi.org/project/rsa/)
  4. [![Build Status](https://travis-ci.org/sybrenstuvel/python-rsa.svg?branch=master)](https://travis-ci.org/sybrenstuvel/python-rsa)
  5. [![Coverage Status](https://coveralls.io/repos/github/sybrenstuvel/python-rsa/badge.svg?branch=master)](https://coveralls.io/github/sybrenstuvel/python-rsa?branch=master)
  6. [![Code Climate](https://img.shields.io/codeclimate/github/sybrenstuvel/python-rsa.svg)](https://codeclimate.com/github/sybrenstuvel/python-rsa)
  7. [Python-RSA](https://stuvel.eu/rsa) is a pure-Python RSA implementation. It supports
  8. encryption and decryption, signing and verifying signatures, and key
  9. generation according to PKCS#1 version 1.5. It can be used as a Python
  10. library as well as on the commandline. The code was mostly written by
  11. Sybren A. Stüvel.
  12. Documentation can be found at the [Python-RSA homepage](https://stuvel.eu/rsa).
  13. Download and install using:
  14. pip install rsa
  15. or download it from the [Python Package Index](https://pypi.org/project/rsa/).
  16. The source code is maintained at [GitHub](https://github.com/sybrenstuvel/python-rsa/) and is
  17. licensed under the [Apache License, version 2.0](https://www.apache.org/licenses/LICENSE-2.0)
  18. Major changes in 4.0
  19. --------------------
  20. Version 3.4 was the last version in the 3.x range. Version 4.0 drops the following modules,
  21. as they are insecure:
  22. - `rsa._version133`
  23. - `rsa._version200`
  24. - `rsa.bigfile`
  25. - `rsa.varblock`
  26. Those modules were marked as deprecated in version 3.4.
  27. Furthermore, in 4.0 the I/O functions is streamlined to always work with bytes on all
  28. supported versions of Python.
  29. Version 4.0 drops support for Python 2.6 and 3.3.