Implementation of symmetric and asymmetric encryption with AES and RSA algorithms for client applications of the Confy communication system.
A Python package that provides symmetric and asymmetric encryption functions for client applications of the Confy encrypted communication system, as well as prefixes that identify messages and encryption keys sent by applications during the handshake process. The package also includes functions to encode and decode the public RSA key to base64 for sending over the network.
Learn more about the project at github.com/confy-security
Made with dedication by students from Brazil 🇧🇷.
Install the package with the package manager used in your project.
For example, with pip:
pip install confy-addonsOr with Poetry:
poetry add confy-addonsfrom confy_addons import (
AESEncryption,
RSAEncryption,
RSAPublicEncryption,
deserialize_public_key,
)This imports all the encryption classes and utilities needed for RSA and AES operations.
rsa_handler = RSAEncryption()
private_key = rsa_handler.private_keyCreates a new RSA encryption handler that automatically generates a 4096-bit key pair. The private key is extracted for later decryption operations.
pub_key_b64 = rsa_handler.base64_public_key
deserialized_pub_key = deserialize_public_key(pub_key_b64)The public key is serialized to a base64-encoded PEM format, which can be safely transmitted over text-based protocols. The deserialized version is reconstructed from the encoded string for encryption operations.
rsa_public_handler = RSAPublicEncryption(key=deserialized_pub_key)Initializes an RSA encryption handler using only the public key. This handler can encrypt data that only the holder of the private key can decrypt.
aes_handler = AESEncryption()
encrypted_aes_key = rsa_public_handler.encrypt(aes_handler.key)Generates a random 256-bit AES key and encrypts it using RSA public key encryption. This allows secure transmission of the symmetric key to the recipient.
decrypted_aes_key = rsa_handler.decrypt(encrypted_aes_key)
aes_handler_decrypted = AESEncryption(key=decrypted_aes_key)Decrypts the AES key using the RSA private key. A new AES handler is created with the decrypted key for symmetric encryption and decryption operations.
secret_message = "Secret message"
encrypted_message = aes_handler.encrypt(secret_message)
decrypted_message = aes_handler_decrypted.decrypt(encrypted_message)
print(decrypted_message)Encrypts a plaintext message using AES-256 in CFB mode and then decrypts it back to verify the process works correctly. The output will display the original secret message.
Confy Addons relies only on cryptography.
If you would like to contribute to the project, see more information at CONTRIBUTING.md.
Confy Addons is open source software licensed under the GPL-3.0 license.