diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2014-06-14 20:26:28 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2014-07-05 01:28:16 +0200 |
commit | 165a19da21d057606926730f432bf298ada2751e (patch) | |
tree | 72f2061561472663d2896388f113b0621c922865 /src/siphash.h | |
download | xK-165a19da21d057606926730f432bf298ada2751e.tar.gz xK-165a19da21d057606926730f432bf298ada2751e.tar.xz xK-165a19da21d057606926730f432bf298ada2751e.zip |
Initial commit
Diffstat (limited to 'src/siphash.h')
-rw-r--r-- | src/siphash.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/siphash.h b/src/siphash.h new file mode 100644 index 0000000..dca7c42 --- /dev/null +++ b/src/siphash.h @@ -0,0 +1,10 @@ +#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 |