Metadata-Version: 2.4
Name: wedpy
Version: 0.1.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Rust
Classifier: Topic :: Security :: Cryptography
Summary: Python bindings for the WED Rust crypto core
Author: ohxxx
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Homepage, https://github.com/ohxxx/wed
Project-URL: Repository, https://github.com/ohxxx/wed

# wedpy

Python bindings for the WED Rust crypto core.

```python
from wedpy import encrypt_json, decrypt_json

token = encrypt_json("shared-passphrase", {"message": "hello"})
payload = decrypt_json("shared-passphrase", token)
```

The package exposes:

- `encrypt_text`
- `decrypt_text`
- `encrypt_json`
- `decrypt_json`

