aboutsummaryrefslogtreecommitdiff
path: root/src/siphash.h
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2014-06-14 20:26:28 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2014-07-05 01:28:16 +0200
commit165a19da21d057606926730f432bf298ada2751e (patch)
tree72f2061561472663d2896388f113b0621c922865 /src/siphash.h
downloadxK-165a19da21d057606926730f432bf298ada2751e.tar.gz
xK-165a19da21d057606926730f432bf298ada2751e.tar.xz
xK-165a19da21d057606926730f432bf298ada2751e.zip
Initial commit
Diffstat (limited to 'src/siphash.h')
-rw-r--r--src/siphash.h10
1 files changed, 10 insertions, 0 deletions
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 <stdint.h>
+#include <stdlib.h>
+
+uint64_t siphash (const unsigned char key[16],
+ const unsigned char *m, size_t len);
+
+#endif // SIPHASH_H