From fc90887921cc4af89da20777c6826ed5ca469f0f Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sat, 29 Jul 2017 18:42:39 +0200 Subject: [PATCH] Add missing include "core.h" --- src/libsodium/crypto_box/crypto_box_easy.c | 1 + .../box_curve25519xchacha20poly1305.c | 1 + .../xchacha20poly1305/secretbox_xchacha20poly1305.c | 1 + 3 files changed, 3 insertions(+) diff --git a/src/libsodium/crypto_box/crypto_box_easy.c b/src/libsodium/crypto_box/crypto_box_easy.c index 081f4a22..deb40b40 100644 --- a/src/libsodium/crypto_box/crypto_box_easy.c +++ b/src/libsodium/crypto_box/crypto_box_easy.c @@ -3,6 +3,7 @@ #include #include +#include "core.h" #include "crypto_box.h" #include "crypto_secretbox.h" #include "private/common.h" diff --git a/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c b/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c index f3c1a64f..920a01f2 100644 --- a/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c +++ b/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c @@ -4,6 +4,7 @@ #include #include +#include "core.h" #include "crypto_box_curve25519xchacha20poly1305.h" #include "crypto_core_hchacha20.h" #include "crypto_hash_sha512.h" diff --git a/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c b/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c index c82efd9c..73a3e768 100644 --- a/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c +++ b/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c @@ -5,6 +5,7 @@ #include #include +#include "core.h" #include "crypto_core_hchacha20.h" #include "crypto_onetimeauth_poly1305.h" #include "crypto_secretbox_xchacha20poly1305.h"