aboutsummaryrefslogtreecommitdiff
path: root/siphash.h
diff options
context:
space:
mode:
Diffstat (limited to 'siphash.h')
-rw-r--r--siphash.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/siphash.h b/siphash.h
new file mode 100644
index 0000000..dca7c42
--- /dev/null
+++ b/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