https://github.com/pusnow/pyjsbn-rsa
Python RSA module for jsbn (http://www-cs-students.stanford.edu/%7Etjw/jsbn/)
https://github.com/pusnow/pyjsbn-rsa
jsbn python rsa
Last synced: 3 months ago
JSON representation
Python RSA module for jsbn (http://www-cs-students.stanford.edu/%7Etjw/jsbn/)
- Host: GitHub
- URL: https://github.com/pusnow/pyjsbn-rsa
- Owner: Pusnow
- License: bsd-2-clause
- Created: 2015-08-31T17:42:37.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2021-04-30T20:37:14.000Z (about 4 years ago)
- Last Synced: 2025-02-20T00:48:31.402Z (4 months ago)
- Topics: jsbn, python, rsa
- Language: Python
- Homepage:
- Size: 40 KB
- Stars: 15
- Watchers: 4
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pyjsbn-rsa
Python RSA module compatible with [jsbn.js](http://www-cs-students.stanford.edu/%7Etjw/jsbn/).
## Installation
pyjsbn-rsa is available via PyPI
pip install pyjsbn-rsa
via setup.py
python setup.py install
## Basic Use
You can test module with [jsbn's RSA Encryption Demo](http://www-cs-students.stanford.edu/~tjw/jsbn/rsa.html)>>from jsbn import RSAKey
>>rsa = RSAKey()
>>rsa.generate(1024,"10001")
>>hex(rsa.n)
0xdc36096d038a56e84c6290f33db80dce54413e89dc15f0490dde8f1f58e69d957eed66c9537918b8fefd6a3fc9fc7b2551ac595bc77c2b98bcfa13f7deb17e94890ae4f28016f0d3e09450054263ae71f81539b09ea42b854492691e94de5671835b4ce91b9756b651ec4bbebe63eec8b7274e157b8de07457f2d3563119ac53L
Paste rsa.n to demo's *Modulus (hex)* and press encryt. (without "0x" and "L") And, get *Ciphertext (hex)* value>>ctext="ceffa610eb7ec7fcbda60b2fdecf6d7cc65b7304ecb6e327056f15d763f1d079d376dbc801861a0ccb2731f836e75de0bb22350b3cd0d18eed216619b9e64a59dc06e15ef2531f0d3c176882444c5919dd751e9bcaefadff372d847b001a298751ebc69f9d310d92c217ab2fa433e3b3c7e8edf4744849560a317ef7f4ee7266"
>>rsa.decrypt(ctext)
'Hello World!'
## Methods
You can use main methods of rsa.js and rsa2.js### setPublic
Set the public key fields N and e from hex strings.>>rsa.setPublic(n,e)
### setPrivate
Set the private key fields N, e, and d from hex strings.>>rsa.setPrivate(n,e,d)
### setPrivateEx
Set the private key fields N, e, d and CRT params from hex strings.>>rsa.setPrivateEx(n,e,d,p,q,dp,dq,c)
### encrypt
Return the PKCS#1 RSA encryption of "text" as an even-length hex string. You should do ```setPublic```, ```setPrivate```, ```setPrivateEx``` or ```generate``` first. `text` must be ```unicode``` for Python 2 and ```str``` for Python 3.>>rsa.encrypt(text)
### decrypt
Return the PKCS#1 RSA decryption of "ctext". "ctext" is an even-length hex string and the output is a plain string. You should do ```setPrivate```, ```setPrivateEx``` or ```generate``` first.>>rsa.decrypt(ctext)
### generate
Generate a new random private key B bits long, using public expt E>>rsa.generate(b,e)