summaryrefslogtreecommitdiff
path: root/src/basic/siphash24.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2016-01-08 01:11:55 +0100
committerSven Eden <yamakuzure@gmx.net>2017-05-17 15:22:15 +0200
commitd0774825d606da65eef44ebdd3d8753907951896 (patch)
tree62b79e05788c1f315edc686a2a0705d7c5b59ebe /src/basic/siphash24.h
parentf7e8917981217e60a6b6071c2a1ae6367890eea0 (diff)
shared: make sure foo.bar and foobar result in different domain name hashes
This also introduces a new macro siphash24_compress_byte() which is useful to add a single byte into the hash stream, and ports one user over to it.
Diffstat (limited to 'src/basic/siphash24.h')
-rw-r--r--src/basic/siphash24.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/basic/siphash24.h b/src/basic/siphash24.h
index 3f7e20362..54e2420cc 100644
--- a/src/basic/siphash24.h
+++ b/src/basic/siphash24.h
@@ -16,6 +16,8 @@ struct siphash {
void siphash24_init(struct siphash *state, const uint8_t k[16]);
void siphash24_compress(const void *in, size_t inlen, struct siphash *state);
+#define siphash24_compress_byte(byte, state) siphash24_compress((const uint8_t[]) { (byte) }, 1, (state))
+
uint64_t siphash24_finalize(struct siphash *state);
uint64_t siphash24(const void *in, size_t inlen, const uint8_t k[16]);