From: Yu Watanabe Date: Wed, 19 Jun 2019 12:02:47 +0000 (+0900) Subject: util: introduce siphash24_compress_boolean() X-Git-Tag: v243-rc1~265^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f3f0d873e2046877a72809bac922cef2eb85dd65;p=thirdparty%2Fsystemd.git util: introduce siphash24_compress_boolean() --- diff --git a/src/basic/siphash24.c b/src/basic/siphash24.c index 61180819b1b..666431aa31f 100644 --- a/src/basic/siphash24.c +++ b/src/basic/siphash24.c @@ -151,6 +151,12 @@ void siphash24_compress(const void *_in, size_t inlen, struct siphash *state) { } } +void siphash24_compress_boolean(bool in, struct siphash *state) { + int i = in; + + siphash24_compress(&i, sizeof i, state); +} + uint64_t siphash24_finalize(struct siphash *state) { uint64_t b; diff --git a/src/basic/siphash24.h b/src/basic/siphash24.h index 67c4f7560c7..1937fea2985 100644 --- a/src/basic/siphash24.h +++ b/src/basic/siphash24.h @@ -17,6 +17,7 @@ struct siphash { void siphash24_init(struct siphash *state, const uint8_t k[static 16]); void siphash24_compress(const void *in, size_t inlen, struct siphash *state); +void siphash24_compress_boolean(bool in, struct siphash *state); #define siphash24_compress_byte(byte, state) siphash24_compress((const uint8_t[]) { (byte) }, 1, (state)) uint64_t siphash24_finalize(struct siphash *state);