Metadata-Version: 2.4
Name: H4sh
Version: 0.5.0
Summary: A Python module for secure hashing using a C implementation
Author: pavlkon
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

from H4sh import SecureHash

hasher = SecureHash(mode="QuickHash")

result = hasher.hash(b"test data")

print(result.hex())

