diff options
author | 2016-11-29 20:27:04 +0100 | |
---|---|---|
committer | 2016-11-29 20:56:41 +0100 | |
commit | bea62bae088a725fda46939c2e42aa6ad4822ff8 (patch) | |
tree | 45d32e3b7ced285fe730ad916de4a9d52d074507 | |
parent | noise: update to new notation (diff) | |
download | wireguard-monolithic-historical-bea62bae088a725fda46939c2e42aa6ad4822ff8.tar.xz wireguard-monolithic-historical-bea62bae088a725fda46939c2e42aa6ad4822ff8.zip |
siphash: add types to header
-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 }; |