chiark / gitweb /
util-lib: add ordered_set_ensure_allocated()
[elogind.git] / src / basic / siphash24.h
index c107bdd2137aedf7794d35445460831b1cd51cc0..ba4f7d01b65c3e115b2198cdf006bcc51a235a1b 100644 (file)
@@ -4,16 +4,16 @@
 #include <sys/types.h>
 
 struct siphash {
-  uint64_t v0;
-  uint64_t v1;
-  uint64_t v2;
-  uint64_t v3;
-  uint64_t padding;
-  size_t inlen;
+        uint64_t v0;
+        uint64_t v1;
+        uint64_t v2;
+        uint64_t v3;
+        uint64_t padding;
+        size_t inlen;
 };
 
-void siphash_init(struct siphash *state, const uint8_t k[16]);
+void siphash24_init(struct siphash *state, const uint8_t k[16]);
 void siphash24_compress(const void *in, size_t inlen, struct siphash *state);
 uint64_t siphash24_finalize(struct siphash *state);
 
-void siphash24(uint8_t out[8], const void *in, size_t inlen, const uint8_t k[16]);
+uint64_t siphash24(const void *in, size_t inlen, const uint8_t k[16]);