OXIESEC PANEL
- Current Dir:
/
/
opt
/
gsutil
/
third_party
/
rsa
/
doc
Server IP: 2a02:4780:11:1594:0:ef5:22d7:a
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
12/11/2024 09:39:44 AM
rwxr-xr-x
📄
Makefile
4.66 KB
04/05/2021 03:08:16 PM
rw-r--r--
📁
_build
-
04/05/2021 03:08:16 PM
rwxr-xr-x
📁
_static
-
04/05/2021 03:08:16 PM
rwxr-xr-x
📁
_templates
-
04/05/2021 03:08:16 PM
rwxr-xr-x
📄
cli.rst
3.76 KB
04/05/2021 03:08:16 PM
rw-r--r--
📄
compatibility.rst
1.9 KB
04/05/2021 03:08:16 PM
rw-r--r--
📄
conf.py
7.13 KB
04/05/2021 03:08:16 PM
rw-r--r--
📄
index.rst
1.51 KB
04/05/2021 03:08:16 PM
rw-r--r--
📄
installation.rst
1.38 KB
04/05/2021 03:08:16 PM
rw-r--r--
📄
intro.rst
1.51 KB
04/05/2021 03:08:16 PM
rw-r--r--
📄
licence.rst
667 bytes
04/05/2021 03:08:16 PM
rw-r--r--
📄
make.bat
4.41 KB
04/05/2021 03:08:16 PM
rw-r--r--
📄
reference.rst
2.19 KB
04/05/2021 03:08:16 PM
rw-r--r--
📄
upgrading.rst
2.69 KB
04/05/2021 03:08:16 PM
rw-r--r--
📄
usage.rst
10.58 KB
04/05/2021 03:08:16 PM
rw-r--r--
Editing: intro.rst
Close
Introduction & history ====================== Python-RSA's history starts in 2006. As a student assignment for the University of Amsterdam we wrote a RSA implementation. We chose Python for various reasons; one of the most important reasons was the `unlimited precision integer`_ support. .. _`unlimited precision integer`: https://docs.python.org/3/library/stdtypes.html#numeric-types-int-float-complex It started out as just a module for calculating large primes, and RSA encryption, decryption, signing and verification using those large numbers. It also included generating public and private keys. There was no functionality for working with byte sequences (such as files) yet. Version 1.0 did include support for byte sequences, but quite clunky, mostly because it didn't support 0-bytes and thus was unsuitable for binary messages. Version 2.0 introduced a lot of improvements by Barry Mead, but still wasn't compatible with other RSA implementations and used no random padding. Version 3.0 introduced PKCS#1 v1.5 functionality, which resulted in compatibility with OpenSSL and many others implementing the same standard. Random padding was introduced that considerably increased security, which also resulted in the ability to encrypt and decrypt binary messages. Key generation was also improved in version 3.0, ensuring that you really get the number of bits you asked for. At the same time key generation speed was greatly improved. The ability to save and load public and private keys in PEM and DER format as also added.