Find a file
Thomas Haller 2203db4ded Squashed 'shared/c-siphash/' changes from 996b79578d94..d8b3a7a8f40e
d8b3a7a8f40e all: fix minor typo in documentation

git-subtree-dir: shared/c-siphash
git-subtree-split: d8b3a7a8f40e9ab94a0acaa7e44f74aa919ef64a
2020-08-05 16:37:21 +02:00
.github/workflows Squashed 'shared/c-siphash/' changes from 7c42c5925819..996b79578d94 2020-06-03 22:09:14 +02:00
src Squashed 'shared/c-siphash/' changes from 996b79578d94..d8b3a7a8f40e 2020-08-05 16:37:21 +02:00
subprojects Squashed 'shared/c-siphash/' changes from 7c42c5925819..996b79578d94 2020-06-03 22:09:14 +02:00
.editorconfig Squashed 'shared/c-siphash/' content from commit 24e301e32 2018-04-18 15:19:58 +02:00
.gitmodules Squashed 'shared/c-siphash/' changes from 211cfc5abc..7c42c59258 2019-04-14 17:23:16 +02:00
AUTHORS Squashed 'shared/c-siphash/' changes from 211cfc5abc..7c42c59258 2019-04-14 17:23:16 +02:00
meson.build Squashed 'shared/c-siphash/' changes from 211cfc5abc..7c42c59258 2019-04-14 17:23:16 +02:00
NEWS.md Squashed 'shared/c-siphash/' changes from 211cfc5abc..7c42c59258 2019-04-14 17:23:16 +02:00
README.md Squashed 'shared/c-siphash/' changes from 211cfc5abc..7c42c59258 2019-04-14 17:23:16 +02:00

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.41
  • 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.