KHA-256 Documentation
Performance-Sacrificed, Security-Maximized Hash Algorithm
Contents
API Reference
Additional Resources
Overview
KHA-256 is a 256-bit cryptographic hash function designed with security prioritized over performance.
Quick Example
from kha256 import quick_hash
result = quick_hash("Hello KHA-256!")
print(f"Hash: {result}")