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.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/crypto/siphash24.h b/src/crypto/siphash24.h
deleted file mode 100644
index 2ac9649..0000000
--- a/src/crypto/siphash24.h
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
-
-#ifndef SIPHASH24_H
-#define SIPHASH24_H
-
-#include <linux/types.h>
-
-enum siphash24_lengths {
- SIPHASH24_KEY_LEN = 16
-};
-
-u64 siphash24(const u8 *data, size_t len, const u8 key[SIPHASH24_KEY_LEN]);
-
-#ifdef DEBUG
-bool siphash24_selftest(void);
-#endif
-
-#endif