siphash.h 178 B

123456789
  1. #ifndef SIPHASH_H
  2. #define SIPHASH_H
  3. struct sipkey {
  4. uint64_t k0;
  5. uint64_t k1;
  6. };
  7. uint64_t siphash24(const void *src, unsigned long src_sz, const struct sipkey *key);
  8. #endif