Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
doc/ | 03-May-2024 | - | 1,308 | 827 | ||
rsa/ | 03-May-2024 | - | 3,862 | 2,438 | ||
tests/ | 03-May-2024 | - | 615 | 387 | ||
.gitignore | D | 03-May-2024 | 99 | 13 | 9 | |
.hgsigs | D | 03-May-2024 | 1.6 KiB | 13 | 12 | |
.pydevproject | D | 03-May-2024 | 622 | 14 | 12 | |
CHANGELOG.txt | D | 03-May-2024 | 1.5 KiB | 56 | 34 | |
LICENSE | D | 03-May-2024 | 576 | 14 | 10 | |
MANIFEST.in | D | 03-May-2024 | 100 | 6 | 5 | |
README.rst | D | 03-May-2024 | 927 | 32 | 20 | |
create_timing_table.py | D | 03-May-2024 | 670 | 30 | 17 | |
requirements-dev-py2x.txt | D | 03-May-2024 | 40 | 6 | 5 | |
requirements-dev-py3x.txt | D | 03-May-2024 | 44 | 6 | 5 | |
run_tests.py | D | 03-May-2024 | 1.1 KiB | 44 | 36 | |
setup.cfg | D | 03-May-2024 | 25 | 4 | 2 | |
setup.py | D | 03-May-2024 | 1.3 KiB | 43 | 37 | |
speed.sh | D | 03-May-2024 | 1.9 KiB | 37 | 32 | |
tox.ini | D | 03-May-2024 | 752 | 50 | 41 |
README.rst
1Pure Python RSA implementation 2============================== 3 4`Python-RSA`_ is a pure-Python RSA implementation. It supports 5encryption and decryption, signing and verifying signatures, and key 6generation according to PKCS#1 version 1.5. It can be used as a Python 7library as well as on the commandline. The code was mostly written by 8Sybren A. Stüvel. 9 10Documentation can be found at the Python-RSA homepage: 11http://stuvel.eu/rsa 12 13Download and install using:: 14 15 pip install rsa 16 17or:: 18 19 easy_install rsa 20 21or download it from the `Python Package Index`_. 22 23The source code is maintained in a `Mercurial repository`_ and is 24licensed under the `Apache License, version 2.0`_ 25 26 27.. _`Python-RSA`: http://stuvel.eu/rsa 28.. _`Mercurial repository`: https://bitbucket.org/sybren/python-rsa 29.. _`Python Package Index`: http://pypi.python.org/pypi/rsa 30.. _`Apache License, version 2.0`: http://www.apache.org/licenses/LICENSE-2.0 31 32