From: Rich Salz Date: Sun, 20 Mar 2016 14:10:18 +0000 (-0400) Subject: Move blake2_loclh to blake2 directory X-Git-Tag: OpenSSL_1_1_0-pre5~286 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01ce6f746d5daaec6210bc13851f81f7d4ef38ec;p=thirdparty%2Fopenssl.git Move blake2_loclh to blake2 directory Reviewed-by: Viktor Dukhovni --- diff --git a/crypto/include/internal/blake2_locl.h b/crypto/blake2/blake2_locl.h similarity index 100% rename from crypto/include/internal/blake2_locl.h rename to crypto/blake2/blake2_locl.h diff --git a/crypto/blake2/blake2b.c b/crypto/blake2/blake2b.c index 621949013a6..6f04412e479 100644 --- a/crypto/blake2/blake2b.c +++ b/crypto/blake2/blake2b.c @@ -19,7 +19,7 @@ #include #include "e_os.h" -#include "internal/blake2_locl.h" +#include "blake2_locl.h" #include "blake2_impl.h" static const uint64_t blake2b_IV[8] = diff --git a/crypto/blake2/blake2s.c b/crypto/blake2/blake2s.c index 75be06a79e2..f940aa150bb 100644 --- a/crypto/blake2/blake2s.c +++ b/crypto/blake2/blake2s.c @@ -19,7 +19,7 @@ #include #include "e_os.h" -#include "internal/blake2_locl.h" +#include "blake2_locl.h" #include "blake2_impl.h" static const uint32_t blake2s_IV[8] = diff --git a/crypto/blake2/m_blake2b.c b/crypto/blake2/m_blake2b.c index b74bdbdabb0..e06bb5bdb77 100644 --- a/crypto/blake2/m_blake2b.c +++ b/crypto/blake2/m_blake2b.c @@ -21,7 +21,7 @@ # include # include -# include "internal/blake2_locl.h" +# include "blake2_locl.h" # include "internal/evp_int.h" static int init(EVP_MD_CTX *ctx) diff --git a/crypto/blake2/m_blake2s.c b/crypto/blake2/m_blake2s.c index 01974d966c6..6150e981f08 100644 --- a/crypto/blake2/m_blake2s.c +++ b/crypto/blake2/m_blake2s.c @@ -21,7 +21,7 @@ # include # include -# include "internal/blake2_locl.h" +# include "blake2_locl.h" # include "internal/evp_int.h" static int init(EVP_MD_CTX *ctx)