Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/synodriver/python-wyhash
- Owner: synodriver
- Created: 2022-07-27T11:22:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-13T14:48:42.000Z (about 1 year ago)
- Last Synced: 2024-10-11T11:26:08.805Z (about 1 month ago)
- Topics: cffi, cython, hash, pypy, pypy3, wyhash
- Language: Python
- Homepage:
- Size: 275 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- Changelog: changename.py
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 randintseed = randint(0, 255)
sec = wyhash.make_secret(seed)
print(wyhash.hash(b"121", seed, sec))
```