Metadata-Version: 2.4
Name: uncrypt
Version: 0.1.3
Summary: A simple Python library for encrypting and decrypting text with an embedded key
Author: M3PO
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# uncrypt

A simple Python library for encrypting and decrypting text with XOR and an embedded key inside the package.

## Usage

```python
from uncrypt import encrypt_text, decrypt_text

ciphertext = encrypt_text("Hello")
print(ciphertext)
print(decrypt_text(ciphertext))
```
