From 01ce6f746d5daaec6210bc13851f81f7d4ef38ec Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Sun, 20 Mar 2016 10:10:18 -0400 Subject: [PATCH] Move blake2_loclh to blake2 directory Reviewed-by: Viktor Dukhovni --- crypto/{include/internal => blake2}/blake2_locl.h | 0 crypto/blake2/blake2b.c | 2 +- crypto/blake2/blake2s.c | 2 +- crypto/blake2/m_blake2b.c | 2 +- crypto/blake2/m_blake2s.c | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename crypto/{include/internal => blake2}/blake2_locl.h (100%) 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 621949013a..6f04412e47 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 75be06a79e..f940aa150b 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 b74bdbdabb..e06bb5bdb7 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 01974d966c..6150e981f0 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) -- 2.25.1