From 165a19da21d057606926730f432bf298ada2751e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Sat, 14 Jun 2014 20:26:28 +0200 Subject: Initial commit --- src/siphash.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/siphash.h (limited to 'src/siphash.h') diff --git a/src/siphash.h b/src/siphash.h new file mode 100644 index 0000000..dca7c42 --- /dev/null +++ b/src/siphash.h @@ -0,0 +1,10 @@ +#ifndef SIPHASH_H +#define SIPHASH_H + +#include +#include + +uint64_t siphash (const unsigned char key[16], + const unsigned char *m, size_t len); + +#endif // SIPHASH_H -- cgit v1.2.3