Metadata-Version: 2.4
Name: zch-e2ee
Version: 0.1.0
Summary: Modulo de encriptacion extremo a extremo (E2EE) usando RSA y AES-GCM.
Author-email: Zoe CH <zoech@example.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: cryptography>=40.0.0
Dynamic: license-file

# zch-e2ee

Modulo en Python de encriptacion de extremo a extremo (E2EE) y firmas digitales usando RSA y AES-GCM.

## Instalacion

```bash
pip install zch-e2ee
```

## Uso Basico

```python
import zch_e2ee

# 1. Generar claves
privada, publica = zch_e2ee.generar_llaves()

# 2. Encriptar un mensaje para un destinatario
mensaje_encriptado = zch_e2ee.encriptar_e2ee("Hola mundo", publica)

# 3. Desencriptar el mensaje
mensaje_original = zch_e2ee.desencriptar_e2ee(mensaje_encriptado, privada)
print(mensaje_original) # Hola mundo
```
