aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/crypto/siphash24.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/siphash24.h')
-rw-r--r--src/crypto/siphash24.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/crypto/siphash24.h b/src/crypto/siphash24.h
new file mode 100644
index 0000000..5ce5a3a
--- /dev/null
+++ b/src/crypto/siphash24.h
@@ -0,0 +1,16 @@
+/* Copyright 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+
+#ifndef SIPHASH24_H
+#define SIPHASH24_H
+
+enum siphash24_lengths {
+ SIPHASH24_KEY_LEN = 16
+};
+
+uint64_t siphash24(const uint8_t *data, size_t len, const uint8_t key[SIPHASH24_KEY_LEN]);
+
+#ifdef DEBUG
+void siphash24_selftest(void);
+#endif
+
+#endif