Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
doc/ | 03-May-2024 | - | 1,275 | 805 | ||
rsa/ | 03-May-2024 | - | 3,067 | 1,928 | ||
tests/ | 03-May-2024 | - | 1,406 | 872 | ||
.codeclimate.yml | D | 03-May-2024 | 224 | 18 | 17 | |
.coveragerc | D | 03-May-2024 | 158 | 6 | 5 | |
.gitignore | D | 03-May-2024 | 168 | 20 | 15 | |
.travis.yml | D | 03-May-2024 | 598 | 31 | 16 | |
CHANGELOG.txt | D | 03-May-2024 | 5.1 KiB | 165 | 109 | |
LICENSE | D | 03-May-2024 | 577 | 14 | 10 | |
MANIFEST.in | D | 03-May-2024 | 131 | 7 | 6 | |
METADATA | D | 03-May-2024 | 455 | 19 | 18 | |
MODULE_LICENSE_APACHE2 | D | 03-May-2024 | 0 | |||
NOTICE | D | 03-May-2024 | 577 | 14 | 10 | |
OWNERS | D | 03-May-2024 | 212 | 5 | 4 | |
Pipfile | D | 03-May-2024 | 306 | 20 | 16 | |
Pipfile.lock | D | 03-May-2024 | 14.6 KiB | 320 | 319 | |
README.md | D | 03-May-2024 | 1.7 KiB | 44 | 29 | |
create_timing_table.py | D | 03-May-2024 | 1.3 KiB | 45 | 18 | |
setup.cfg | D | 03-May-2024 | 63 | 6 | 4 | |
setup.py | D | 03-May-2024 | 2.6 KiB | 67 | 47 | |
speed.sh | D | 03-May-2024 | 1.4 KiB | 44 | 22 | |
tox.ini | D | 03-May-2024 | 411 | 21 | 16 |
README.md
1Pure Python RSA implementation 2============================== 3 4[![PyPI](https://img.shields.io/pypi/v/rsa.svg)](https://pypi.org/project/rsa/) 5[![Build Status](https://travis-ci.org/sybrenstuvel/python-rsa.svg?branch=master)](https://travis-ci.org/sybrenstuvel/python-rsa) 6[![Coverage Status](https://coveralls.io/repos/github/sybrenstuvel/python-rsa/badge.svg?branch=master)](https://coveralls.io/github/sybrenstuvel/python-rsa?branch=master) 7[![Code Climate](https://img.shields.io/codeclimate/github/sybrenstuvel/python-rsa.svg)](https://codeclimate.com/github/sybrenstuvel/python-rsa) 8 9[Python-RSA](https://stuvel.eu/rsa) is a pure-Python RSA implementation. It supports 10encryption and decryption, signing and verifying signatures, and key 11generation according to PKCS#1 version 1.5. It can be used as a Python 12library as well as on the commandline. The code was mostly written by 13Sybren A. Stüvel. 14 15Documentation can be found at the [Python-RSA homepage](https://stuvel.eu/rsa). 16 17Download and install using: 18 19 pip install rsa 20 21or download it from the [Python Package Index](https://pypi.org/project/rsa/). 22 23The source code is maintained at [GitHub](https://github.com/sybrenstuvel/python-rsa/) and is 24licensed under the [Apache License, version 2.0](https://www.apache.org/licenses/LICENSE-2.0) 25 26 27Major changes in 4.0 28-------------------- 29 30Version 3.4 was the last version in the 3.x range. Version 4.0 drops the following modules, 31as they are insecure: 32 33- `rsa._version133` 34- `rsa._version200` 35- `rsa.bigfile` 36- `rsa.varblock` 37 38Those modules were marked as deprecated in version 3.4. 39 40Furthermore, in 4.0 the I/O functions is streamlined to always work with bytes on all 41supported versions of Python. 42 43Version 4.0 drops support for Python 2.6 and 3.3. 44