Metadata-Version: 2.4
Name: xaor
Version: 0.2.0
Summary: Adaptive regenerative cryptographic engine — memory-hard, chaos-keyed, GPU/ASIC-resistant
Author: Surya
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

# Xaor Python Package

Python bindings for the **Xaor Cryptographic Engine** — an adaptive, memory-hard, chaos-keyed password hashing algorithm.

## Installation

```bash
pip install xaor
```

## Quick Start

```python
from xaor import hash_password, verify_password

# 1. Hash a password
hashed = hash_password("my-secure-password")
print("Hash:", hashed)

# 2. Verify a password
is_valid = verify_password("my-secure-password", hashed)
print("Is valid:", is_valid)  # True
```
