aboutsummaryrefslogtreecommitdiff
path: root/siphash.h
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2014-09-07 17:28:10 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2014-09-08 21:40:01 +0200
commitb418bfe22cb7ba9091f065d8697ef8bcfcead203 (patch)
tree20541f58b957cbb7ae25e4baef81cbbce0b92f68 /siphash.h
downloadponymap-b418bfe22cb7ba9091f065d8697ef8bcfcead203.tar.gz
ponymap-b418bfe22cb7ba9091f065d8697ef8bcfcead203.tar.xz
ponymap-b418bfe22cb7ba9091f065d8697ef8bcfcead203.zip
Initial commit
Nothing's working yet, only some supporting code has been put in place.
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