From 90658321d3e4ce48a11bbaaefcacf871e72e83b8 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sun, 16 Jul 2017 12:14:16 +0200 Subject: [PATCH] Only include sodium/crypto_pwhash_scryptsalsa208sha256.h on !minimal --- src/libsodium/include/sodium.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsodium/include/sodium.h b/src/libsodium/include/sodium.h index d0bb25c8..1f79e87b 100644 --- a/src/libsodium/include/sodium.h +++ b/src/libsodium/include/sodium.h @@ -31,7 +31,6 @@ #include "sodium/crypto_onetimeauth_poly1305.h" #include "sodium/crypto_pwhash.h" #include "sodium/crypto_pwhash_argon2i.h" -#include "sodium/crypto_pwhash_scryptsalsa208sha256.h" #include "sodium/crypto_scalarmult.h" #include "sodium/crypto_scalarmult_curve25519.h" #include "sodium/crypto_secretbox.h" @@ -59,6 +58,7 @@ #ifndef SODIUM_LIBRARY_MINIMAL # include "sodium/crypto_box_curve25519xchacha20poly1305.h" # include "sodium/crypto_secretbox_xchacha20poly1305.h" +# include "sodium/crypto_pwhash_scryptsalsa208sha256.h" # include "sodium/crypto_stream_aes128ctr.h" # include "sodium/crypto_stream_salsa2012.h" # include "sodium/crypto_stream_salsa208.h"