Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 979 Bytes

README.md

File metadata and controls

39 lines (25 loc) · 979 Bytes

AES Encryption

A python aes encryption library

Table of Contents

Installation

Install using pip

pip install aes-encryption

Usage

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

Support

Please open an issue for support.

Contributing

Please contribute using Github Flow. Create a branch, add commits, and open a pull request.