diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2014-08-10 00:01:38 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2014-08-10 00:01:38 +0200 |
commit | bd68e28b608fb74bb4823726b9f0bf6489ad94b5 (patch) | |
tree | ff082bd52d8dfde8cc8d2f223e2d9b3c63bcc770 /siphash.h | |
parent | 0da22a799a215f00ebc2be9e7cf5cc505db27148 (diff) | |
download | xK-bd68e28b608fb74bb4823726b9f0bf6489ad94b5.tar.gz xK-bd68e28b608fb74bb4823726b9f0bf6489ad94b5.tar.xz xK-bd68e28b608fb74bb4823726b9f0bf6489ad94b5.zip |
Remove the `src' directory
There are not that many files, and aren't going to be.
Diffstat (limited to 'siphash.h')
-rw-r--r-- | siphash.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/siphash.h b/siphash.h new file mode 100644 index 0000000..dca7c42 --- /dev/null +++ b/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 |