dvdhrm / c-siphash

Streaming-capable SipHash Implementation

Home Page:https://c-util.github.io/c-siphash

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

c-siphash

Streaming-capable SipHash Implementation

The c-siphash project is a standalone implementation of SipHash in Standard ISO-C11. It provides a streaming-capable API to compute data hashes according to the SipHash algorithm. For API documentation, see the c-siphash.h header file, as well as the docbook comments for each function.

Project

Requirements

The requirements for this project are:

  • libc (e.g., glibc >= 2.16)

At build-time, the following software is required:

  • meson >= 0.60
  • pkg-config >= 0.29

Build

The meson build-system is used for this project. Contact upstream documentation for detailed help. In most situations the following commands are sufficient to build and install from source:

mkdir build
cd build
meson setup ..
ninja
meson test
ninja install

No custom configuration options are available.

Repository:

License:

  • Apache-2.0 OR LGPL-2.1-or-later
  • See AUTHORS file for details.

About

Streaming-capable SipHash Implementation

https://c-util.github.io/c-siphash


Languages

Language:C 88.3%Language:Meson 11.7%