Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 764 Bytes

README.markdown

File metadata and controls

24 lines (16 loc) · 764 Bytes

✨ python-wyhash ✨

The python binding for wyhash

pypi python implementation wheel license action

Usage

import wyhash
from random import randint

seed = randint(0, 255)
sec = wyhash.make_secret(seed)
print(wyhash.hash(b"121", seed, sec))