11 lines
184 B
C
11 lines
184 B
C
|
#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
|