Helper for hybrid AES-RSA encryption
Project description
hybrid-rsa-aes
hybrid-rsa-aes is a helper for hybrid AES-RSA encryption.
Installation
hybrid-rsa-aes is available on PyPI. Use pip to install:
$ pip install hybrid-rsa-aes
Basic Usage
from cryptography.hazmat.backends import default_backend
from cryptography.hazmat.primitives.asymmetric import rsa
from hybrid_rsa_aes import HybridCipher
rsa_private_key = rsa.generate_private_key(
public_exponent=65537, key_size=2048, backend=default_backend()
)
rsa_public_key = rsa_private_key.public_key()
encrypt_message = HybridCipher().encrypt(rsa_public_key=rsa_public_key, data={"test": "demo"})
decrypt_message = HybridCipher().decrypt(
rsa_private_key=rsa_private_key, cipher_text=encrypt_message
)
assert "test" in decrypt_message and decrypt_message["test"] == "demo"
License
hybrid-rsa-aes is developed and distributed under the Apache 2.0 license.
Reporting a Security Vulnerability
See our security policy.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
hybrid-rsa-aes-0.2.3.tar.gz
(7.6 kB
view hashes)
Built Distribution
Close
Hashes for hybrid_rsa_aes-0.2.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38cf0f615e8894ff2b66b569f81447c2920b7fd28eda91ffe324ae2a0fb2525b |
|
MD5 | 38afbd05e15a641142a4b2d34291e87e |
|
BLAKE2b-256 | 00d439d95b8dcc43535afaec9ced22da16db09e173485a7e0fc55db9de2bdd9f |