aboutsummaryrefslogtreecommitdiff
path: root/src/ext/siphash.h
blob: ff372bc5d4b74e6d63a7cb76aaa7d65015ebbee9 (plain)
1
2
3
4
5
6
7
8
9
#ifndef SIPHASH_H
#define SIPHASH_H
struct sipkey {
  uint64_t k0;
  uint64_t k1;
};
uint64_t siphash24(const void *src, unsigned long src_sz, const struct sipkey *key);

#endif