Metadata-Version: 2.4
Name: hanifx
Version: 8.0.1
Summary: 🔥 HANIFX — Encode, Stealth & Runtime Trap System for API, Token & Sensitive Data Protection
Home-page: https://github.com/hanifx-540/hanifx
Author: HanifX Team
Author-email: sajim4653@gmail.com
License: MIT
Project-URL: Documentation, https://github.com/hanifx-540/hanifx/wiki
Project-URL: Source, https://github.com/hanifx-540/hanifx
Project-URL: Bug Tracker, https://github.com/hanifx-540/hanifx/issues
Keywords: hanifx,encode,obfuscate,token-protection,api-encode,anti-clone,anti-scan,traplogic,cybersec,uid-lock
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Software Development :: Libraries :: Python Modules
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
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: project-url
Dynamic: requires-python
Dynamic: summary

# Hanifx

Next-gen encoding and security toolkit for Python.

## Features

- Secure key encoding & decoding
- Anti-scan stealth guards
- Clone detection traps
- Runtime internal decode support
- Ready for PyPI upload

## Installation

```bash
pip install hanifx


#....................#

from hanifx.shadowcore.securekey import secure_key_encode, secure_key_decode

encoded = secure_key_encode("your_api_key")
print(encoded)

decoded = secure_key_decode(encoded)
print(decoded)
