wyhash

python binding for wyhash


Keywords
hash, cffi, cython, pypy, pypy3, wyhash
License
BSD-3-Clause
Install
pip install wyhash==0.1.2

Documentation

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))