chiark / gitweb /
Prep v221: Update and clean up build system to sync with upstream
[elogind.git] / src / basic / siphash24.h
diff --git a/src/basic/siphash24.h b/src/basic/siphash24.h
new file mode 100644 (file)
index 0000000..62e1168
--- /dev/null
@@ -0,0 +1,6 @@
+#pragma once
+
+#include <inttypes.h>
+#include <sys/types.h>
+
+void siphash24(uint8_t out[8], const void *in, size_t inlen, const uint8_t k[16]);