A python aes encryption library
Install using pip
pip install aes-encryption
from aes_encryption import AESCipher
encryption_key: str = 'secret key'
cipher: AESCipher = AESCipher(encryption_key) # this initializes the cipher with an encryption key
message: str = 'secret message'
encrypted: str = cipher.encrypt(message) # this is how you encrypt your message
decrypted: str = cipher.decrypt(encrypted) # this is how you decrypt your message
Please open an issue for support.
Please contribute using Github Flow. Create a branch, add commits, and open a pull request.