summaryrefslogtreecommitdiff
path: root/siphash.h
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2014-08-10 00:01:38 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2014-08-10 00:01:38 +0200
commitbd68e28b608fb74bb4823726b9f0bf6489ad94b5 (patch)
treeff082bd52d8dfde8cc8d2f223e2d9b3c63bcc770 /siphash.h
parent0da22a799a215f00ebc2be9e7cf5cc505db27148 (diff)
downloadxK-bd68e28b608fb74bb4823726b9f0bf6489ad94b5.tar.gz
xK-bd68e28b608fb74bb4823726b9f0bf6489ad94b5.tar.xz
xK-bd68e28b608fb74bb4823726b9f0bf6489ad94b5.zip
Remove the `src' directory
There are not that many files, and aren't going to be.
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