Metadata-Version: 2.4
Name: hanifx
Version: 9.0.0
Summary: 🔥 Advanced pure Python encoding library with irreversible locks, file handler, and custom pipelines.
Home-page: https://github.com/hanifx-dev/hanifx
Author: Hanif
Author-email: sajim4653@gmail.com
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Security :: Cryptography
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# hanifx 🔐

**Version:** 9.0.0  
**Author:** Hanif  
**Email:** sajim4653@gmail.com  

## 🔥 About

`hanifx` is a full-fire, handcrafted Python encoding module built with pure logic — no external encryption libraries!  
It includes:

- Base64, XOR, Caesar, ROT13 encoders
- Time-based encoding with expiry
- Device-locked encoding (cannot be decoded on another system)
- One-way irreversible LifeLock encoding
- Smart input detector (file/string)
- File writer to SDCard
- CLI tool support
- Ready for PyPI upload 🚀

---

## ✅ Installation

```bash
pip install hanifx

from hanifx.enc.chain_layer import encode_pipeline, decode_pipeline

text = "Hello Hanif"
layers = ["base64", "xor", "caesar"]

encoded = encode_pipeline(text, layers)
print("Encoded:", encoded)

decoded = decode_pipeline(encoded, layers)
print("Decoded:", decoded)
