Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/synodriver/python-wyhash

python binding for wyhash
https://github.com/synodriver/python-wyhash

cffi cython hash pypy pypy3 wyhash

Last synced: 18 days ago
JSON representation

python binding for wyhash

Awesome Lists containing this project

README

        

✨ python-wyhash ✨

The python binding for wyhash

[![pypi](https://img.shields.io/pypi/v/wyhash.svg)](https://pypi.org/project/wyhash/)
![python](https://img.shields.io/pypi/pyversions/wyhash)
![implementation](https://img.shields.io/pypi/implementation/wyhash)
![wheel](https://img.shields.io/pypi/wheel/wyhash)
![license](https://img.shields.io/github/license/synodriver/python-wyhash.svg)
![action](https://img.shields.io/github/workflow/status/synodriver/python-wyhash/build%20wheel)

### Usage

```python
import wyhash
from random import randint

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