myrsa
Simple use of RSA for asymmetric encryption and signature
简单使用 rsa 进行非对称加密和签名
Installation
pip install myrsa
Usage:
import myrsa
pubkey, prikey = myrsa.newkeys()
print((pubkey, prikey))
message = 'Hello@世界'
crypto = myrsa.encrypt(message, pubkey)
print(crypto)
message = myrsa.decrypt(crypto, prikey)
print(message)
signature = myrsa.sign(message, prikey)
print(signature)
verified = myrsa.verify(message, signature, pubkey)
print(verified)
Release files for myrsa 0.0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| myrsa-0.0.1.tar.gz | 2.5 kB | Details |
Release files / myrsa-0.0.1.tar.gz
| Download URL | myrsa-0.0.1.tar.gz |
|---|---|
| Size | 2.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
395144fd5f2dcbe31611c074cc041857cd239e57f8d10e99a6a98fadf7525daf
|
|
BLAKE2b-256 checksum How to use checksums |
df2378a0ef7a52358d4bf9d04e4f944d5ade5a7e29dc16162c12dcf1598a79a1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3
|