Metadata-Version: 2.1
Name: zscryptography
Version: 2.0.0
Summary: A simple cryptography library using AES
Home-page: https://github.com/zsu/zscryptography
Author: ZSU
Author-email: 
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# zscryptography

A simple encryption library using AES.

## Installation

```bash
pip install zscryptography
```
## Usage
```xml
from zscryptography import *

# Setup key(32 bytes)
key = "thisisaverysecretkey123456789012"

# Encrypt the plaintext
plain_text = "Hello, World!"
encrypted_text = encrypt(key,plain_text)
print(f"Encrypted: {encrypted_text}")

# Decrypt the ciphertext
decrypted_text = decrypt(key,encrypted_text)
print(f"Decrypted: {decrypted_text}")
```
