aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/crypto/siphash24.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-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 5d99cb3..2ac9649 100644
--- a/src/crypto/siphash24.h
+++ b/src/crypto/siphash24.h
@@ -9,7 +9,7 @@ enum siphash24_lengths {
SIPHASH24_KEY_LEN = 16
};
-uint64_t siphash24(const uint8_t *data, size_t len, const uint8_t key[SIPHASH24_KEY_LEN]);
+u64 siphash24(const u8 *data, size_t len, const u8 key[SIPHASH24_KEY_LEN]);
#ifdef DEBUG
bool siphash24_selftest(void);