Find a file
Thomas Haller 085b4e0388 Squashed 'shared/c-siphash/' changes from 211cfc5abc..7c42c59258
7c42c59258 build: use c-stdaux
d81d68ff83 build: sync with c-util
e858efbc45 build: pull in c-stdaux

git-subtree-dir: shared/c-siphash
git-subtree-split: 7c42c592581906fef19458372b8db2b643278211
2019-04-14 17:23:16 +02:00
.cherryci Squashed 'shared/c-siphash/' content from commit 24e301e32 2018-04-18 15:19:58 +02:00
src Squashed 'shared/c-siphash/' changes from 211cfc5abc..7c42c59258 2019-04-14 17:23:16 +02:00
subprojects Squashed 'shared/c-siphash/' changes from 211cfc5abc..7c42c59258 2019-04-14 17:23:16 +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
.travis.yml Squashed 'shared/c-siphash/' changes from 24e301e329..211cfc5abc 2019-02-06 08:24:00 +01: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.