Find a file
Thomas Haller 571ba5a824 Squashed 'src/c-siphash/' changes from 04187aa367ee..4a8b5f42f0be
4a8b5f42f0be c-siphash: support SipHash variants other than SipHash24
60dd3c423a13 build: update AUTHORS
be0cd29ad7c9 c-siphash: fix typo
ad372ccd75f1 build: use module-definition files with MSVC
8ae0b4ca1a0c c-siphash: avoid empty initializers
fd2ae696dab3 ci: enable macos+windows builds

git-subtree-dir: src/c-siphash
git-subtree-split: 4a8b5f42f0be0248d2f1ebc19c5d053c9862f823
2022-11-23 18:00:33 +01:00
.github/workflows Squashed 'src/c-siphash/' changes from 04187aa367ee..4a8b5f42f0be 2022-11-23 18:00:33 +01:00
src Squashed 'src/c-siphash/' changes from 04187aa367ee..4a8b5f42f0be 2022-11-23 18:00:33 +01:00
subprojects Squashed 'src/c-siphash/' changes from eb87a9c4a5b0..1da8a0d46bfd 2022-05-06 09:51:44 +02:00
.editorconfig Squashed 'src/c-siphash/' content from commit eb87a9c4a5b0 2021-10-01 16:01:48 +02:00
.gitmodules Squashed 'src/c-siphash/' changes from eb87a9c4a5b0..1da8a0d46bfd 2022-05-06 09:51:44 +02:00
AUTHORS Squashed 'src/c-siphash/' changes from 04187aa367ee..4a8b5f42f0be 2022-11-23 18:00:33 +01:00
meson.build Squashed 'src/c-siphash/' changes from eb87a9c4a5b0..1da8a0d46bfd 2022-05-06 09:51:44 +02:00
NEWS.md Squashed 'src/c-siphash/' changes from 1da8a0d46bfd..04187aa367ee 2022-07-06 10:13:02 +02:00
README.md Squashed 'src/c-siphash/' changes from eb87a9c4a5b0..1da8a0d46bfd 2022-05-06 09:51:44 +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.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.