aboutsummaryrefslogtreecommitdiff
path: root/src/ext/siphash.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/siphash.h')
-rw-r--r--src/ext/siphash.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ext/siphash.h b/src/ext/siphash.h
index ff372bc5d..964fe7df9 100644
--- a/src/ext/siphash.h
+++ b/src/ext/siphash.h
@@ -6,4 +6,7 @@ struct sipkey {
};
uint64_t siphash24(const void *src, unsigned long src_sz, const struct sipkey *key);
+void siphash_set_global_key(const struct sipkey *key);
+uint64_t siphash24g(const void *src, unsigned long src_sz);
+
#endif