summaryrefslogtreecommitdiffhomepage
path: root/src/crypto/siphash24.h
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2016-06-25 01:28:18 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2016-06-25 16:48:39 +0200
commitc0566bb9e9c84a858ef61dd3f3034a32acf06ac9 (patch)
tree217ad4ae9e7c4be79028c55af1d1310df3bb7485 /src/crypto/siphash24.h
parente20c4c14e65e62d21b1ffb78d4a50ae8be7db348 (diff)
tests: make fatal
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/crypto/siphash24.h')
-rw-r--r--src/crypto/siphash24.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/siphash24.h b/src/crypto/siphash24.h
index 5ce5a3a..f06a87c 100644
--- a/src/crypto/siphash24.h
+++ b/src/crypto/siphash24.h
@@ -10,7 +10,7 @@ enum siphash24_lengths {
uint64_t siphash24(const uint8_t *data, size_t len, const uint8_t key[SIPHASH24_KEY_LEN]);
#ifdef DEBUG
-void siphash24_selftest(void);
+bool siphash24_selftest(void);
#endif
#endif