diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2016-11-29 20:27:04 +0100 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2016-11-29 20:56:41 +0100 |
commit | 4fc48ada0f2d5bf6f9c155e72fafcf4d1da95e96 (patch) | |
tree | b02e77affde1b290e51c22955139be4c69e48d13 | |
parent | 76054416dcf0e0f20bb5c341ce256a54ea0b9ab5 (diff) |
siphash: add types to header
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r-- | src/crypto/siphash24.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/crypto/siphash24.h b/src/crypto/siphash24.h index d3a221e..5d99cb3 100644 --- a/src/crypto/siphash24.h +++ b/src/crypto/siphash24.h @@ -3,6 +3,8 @@ #ifndef SIPHASH24_H #define SIPHASH24_H +#include <linux/types.h> + enum siphash24_lengths { SIPHASH24_KEY_LEN = 16 }; |