]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/basic/siphash24.h
util: make siphash24_compress_boolean() inline
[thirdparty/systemd.git] / src / basic / siphash24.h
index 1937fea2985fa1f43fbbc4efe5d4a025e7424bf7..d29058e51dddf57d39f6d48c69f8cc4bcb508cb4 100644 (file)
@@ -17,9 +17,14 @@ 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))
 
+static inline void siphash24_compress_boolean(bool in, struct siphash *state) {
+        uint8_t i = in;
+
+        siphash24_compress(&i, sizeof i, state);
+}
+
 uint64_t siphash24_finalize(struct siphash *state);
 
 uint64_t siphash24(const void *in, size_t inlen, const uint8_t k[static 16]);