Metadata-Version: 2.1
Name: zscryptography
Version: 0.1.7
Summary: A simple cryptography library using AES and PKCS7 padding
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 and PKCS7 padding.

## Installation

```bash
pip install zscryptography
```
## Usage
```xml
from zscryptography import encrypt, decrypt

# Define your key and plaintext
key = "thisisaverysecretkey1234"
plain_text = "Hello, World!"

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

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