Metadata-Version: 2.4
Name: muerte32crypt
Version: 0.1.0
Summary: Windows-native DPAPI encryption with a clean Python interface.
Author-email: MuerteSeguraZ <northkoreanukeslmao@gmail.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Security :: Cryptography
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# muerte32crypt

Windows-native DPAPI encryption using `ctypes`.  
Encrypt and decrypt strings, bytes, or files with optional entropy and descriptions.

# Usage
```py
from muerte32crypt.dpapi import encrypt_str, decrypt_str

enc = encrypt_str("my_password", entropy="somesalt")
print(decrypt_str(enc, entropy="somesalt"))
```

## Install

```bash
pip install muerte32crypt
