From e60139c17fc3a227ea94196283142c6340ebdc25 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sat, 21 Nov 2015 13:32:07 +0100 Subject: [PATCH] Add missing headers --- src/libsodium/crypto_stream/salsa20/ref/stream_salsa20_ref.c | 1 + src/libsodium/crypto_stream/salsa20/ref/xor_salsa20_ref.c | 1 + src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012.c | 1 + src/libsodium/crypto_stream/salsa2012/ref/xor_salsa2012.c | 1 + src/libsodium/crypto_stream/salsa208/ref/stream_salsa208.c | 1 + src/libsodium/crypto_stream/salsa208/ref/xor_salsa208.c | 1 + 6 files changed, 6 insertions(+) diff --git a/src/libsodium/crypto_stream/salsa20/ref/stream_salsa20_ref.c b/src/libsodium/crypto_stream/salsa20/ref/stream_salsa20_ref.c index b9844ae2..3e4f6eb0 100644 --- a/src/libsodium/crypto_stream/salsa20/ref/stream_salsa20_ref.c +++ b/src/libsodium/crypto_stream/salsa20/ref/stream_salsa20_ref.c @@ -5,6 +5,7 @@ Public domain. */ #include "crypto_core_salsa20.h" +#include "crypto_stream_salsa20.h" #include "utils.h" #ifndef HAVE_AMD64_ASM diff --git a/src/libsodium/crypto_stream/salsa20/ref/xor_salsa20_ref.c b/src/libsodium/crypto_stream/salsa20/ref/xor_salsa20_ref.c index 3133e66d..b998ae4c 100644 --- a/src/libsodium/crypto_stream/salsa20/ref/xor_salsa20_ref.c +++ b/src/libsodium/crypto_stream/salsa20/ref/xor_salsa20_ref.c @@ -7,6 +7,7 @@ Public domain. #include #include "crypto_core_salsa20.h" +#include "crypto_stream_salsa20.h" #include "utils.h" #ifndef HAVE_AMD64_ASM diff --git a/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012.c b/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012.c index 38492012..5008ab69 100644 --- a/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012.c +++ b/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012.c @@ -5,6 +5,7 @@ Public domain. */ #include "crypto_core_salsa2012.h" +#include "crypto_stream_salsa2012.h" #include "utils.h" typedef unsigned int uint32; diff --git a/src/libsodium/crypto_stream/salsa2012/ref/xor_salsa2012.c b/src/libsodium/crypto_stream/salsa2012/ref/xor_salsa2012.c index 951dc70f..ab471b33 100644 --- a/src/libsodium/crypto_stream/salsa2012/ref/xor_salsa2012.c +++ b/src/libsodium/crypto_stream/salsa2012/ref/xor_salsa2012.c @@ -5,6 +5,7 @@ Public domain. */ #include "crypto_core_salsa2012.h" +#include "crypto_stream_salsa2012.h" #include "utils.h" typedef unsigned int uint32; diff --git a/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208.c b/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208.c index fe036a1c..7869b846 100644 --- a/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208.c +++ b/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208.c @@ -5,6 +5,7 @@ Public domain. */ #include "crypto_core_salsa208.h" +#include "crypto_stream_salsa208.h" #include "utils.h" typedef unsigned int uint32; diff --git a/src/libsodium/crypto_stream/salsa208/ref/xor_salsa208.c b/src/libsodium/crypto_stream/salsa208/ref/xor_salsa208.c index bdc9052c..706970f0 100644 --- a/src/libsodium/crypto_stream/salsa208/ref/xor_salsa208.c +++ b/src/libsodium/crypto_stream/salsa208/ref/xor_salsa208.c @@ -5,6 +5,7 @@ Public domain. */ #include "crypto_core_salsa208.h" +#include "crypto_stream_salsa208.h" #include "utils.h" typedef unsigned int uint32;