Metadata-Version: 2.4
Name: pnasys-encryption-service
Version: 1.12
Summary: PNASys Encryption Service – multi-layer symmetric/asymmetric encryption utilities.
Author: Powerentity
License: Custom PNASys License – see LICENSE
Project-URL: Homepage, https://github.com/Powerentity/pnasys-encryption-service
Project-URL: Source, https://github.com/Powerentity/pnasys-encryption-service
Project-URL: Issues, https://github.com/Powerentity/pnasys-encryption-service/issues
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: cryptography>=42.0.0
Dynamic: license-file

# pnasys-encryption-service

Multi-layer encryption service providing:

- Integrity HMAC
- AES-CBC, AES-GCM
- Fernet
- ChaCha20
- Hybrid RSA + ECC envelope

```python
from pnasys_encryption_service import EncryptString, DecryptString, GenerateEncryptionKey

key = GenerateEncryptionKey()
token = EncryptString("hello world", key)
plain = DecryptString(token, key)
```
