ccls/third_party/siphash.h

8 lines
172 B
C
Raw Permalink Normal View History

2018-01-14 21:18:12 +00:00
#pragma once
#include <stddef.h>
#include <stdint.h>
2018-01-14 21:18:12 +00:00
int siphash(const uint8_t *in, const size_t inlen, const uint8_t *k,
uint8_t *out, const size_t outlen);