Metadata-Version: 2.4
Name: hanifx
Version: 24.0.0
Summary: Hanifx Secure Encoding Module for text and files
Home-page: https://pypi.org/project/hanifx/
Author: Hanif
Author-email: sajim4653@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Security
Classifier: Intended Audience :: Developers
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_secure_encode

Ultra-secure encoding module for text and files.

## Features
- Encode text or any programming file
- Generate maratmak (extremely secure) output
- Irreversible encode (decode impossible)
- Internal key manager
- Operation metadata logging
- Termux compatible

## Usage

```python
from hanifx_secure_encode import encode_text, encode_file

# Encode text
result = encode_text("Sensitive Information")
print(result)

# Encode file
encoded_file = encode_file("example.py")
print(f"Encoded file created: {encoded_file}")
