xK/src/siphash.h

11 lines
184 B
C
Raw Normal View History

2014-06-14 20:26:28 +02:00
#ifndef SIPHASH_H
#define SIPHASH_H
#include <stdint.h>
#include <stdlib.h>
uint64_t siphash (const unsigned char key[16],
const unsigned char *m, size_t len);
#endif // SIPHASH_H