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

https://github.com/realorangeone/seahash-py

Python bindings to seahash
https://github.com/realorangeone/seahash-py

hash python seahash

Last synced: 3 months ago
JSON representation

Python bindings to seahash

Awesome Lists containing this project

README

        

# SeaHash

[![CI](https://github.com/RealOrangeOne/seahash-py/actions/workflows/ci.yml/badge.svg)](https://github.com/RealOrangeOne/seahash-py/actions/workflows/ci.yml)
![PyPI](https://img.shields.io/pypi/v/seahash.svg)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/seahash.svg)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/seahash.svg)
![PyPI - Status](https://img.shields.io/pypi/status/seahash.svg)
![PyPI - License](https://img.shields.io/pypi/l/seahash.svg)

Python bindings to [`seahash`](https://docs.rs/seahash/) - A blazingly fast, portable hash function with proven statistical guarantees.

## Installation

```
pip install seahash
```

Wheels should be available for most platforms. If you need a wheel which isn't provided, [raise an issue](https://github.com/RealOrangeOne/seahash-py/issues).

Compiling from source will require a Rust toolchain.

## Usage

Hashing can be done in 2 ways:

### Primitive functions

```python
import seahash

# Plain hash
seahash.hash(b"123")

# Hash with custom seeds
seahash.hash_seeded(b"123", 4, 5, 6, 7)
```

Both methods return an `int`.

### `hashlib`-compatible class

For convenience, a `hashlib`-compatible class is provided:

```python
import seahash

s = seahash.SeaHash()

s.update(b"123")

s.digest()
s.hexdigest()
```

The underlying `int` digest can be obtained with `intdigest`.