siphash.h 152 B

123456
  1. #ifndef _SIPHASH_H
  2. #define _SIPHASH_H
  3. int siphash(const uint8_t *in, const size_t inlen, const uint8_t *k, uint8_t *out, const size_t outlen);
  4. #endif