• Home
Name Date Size #Lines LOC

..--

doc/03-May-2024-1,308827

rsa/03-May-2024-3,8622,438

tests/03-May-2024-615387

.gitignoreD03-May-202499 139

.hgsigsD03-May-20241.6 KiB1312

.pydevprojectD03-May-2024622 1412

CHANGELOG.txtD03-May-20241.5 KiB5634

LICENSED03-May-2024576 1410

MANIFEST.inD03-May-2024100 65

README.rstD03-May-2024927 3220

create_timing_table.pyD03-May-2024670 3017

requirements-dev-py2x.txtD03-May-202440 65

requirements-dev-py3x.txtD03-May-202444 65

run_tests.pyD03-May-20241.1 KiB4436

setup.cfgD03-May-202425 42

setup.pyD03-May-20241.3 KiB4337

speed.shD03-May-20241.9 KiB3732

tox.iniD03-May-2024752 5041

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