From f8385b0fc0215b378b61891582b0579659d0b9f4 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Wed, 15 Nov 2017 16:24:32 +0000 Subject: [PATCH] Remove the curve448/decaf sub-directory Reviewed-by: Bernd Edlinger (Merged from https://github.com/openssl/openssl/pull/5105) --- crypto/ec/curve448/{decaf/common.h => curve448utils.h} | 0 crypto/ec/curve448/point_448.h | 2 +- crypto/ec/curve448/shake.h | 2 +- crypto/ec/curve448/utils.c | 2 +- crypto/ec/curve448/word.h | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename crypto/ec/curve448/{decaf/common.h => curve448utils.h} (100%) diff --git a/crypto/ec/curve448/decaf/common.h b/crypto/ec/curve448/curve448utils.h similarity index 100% rename from crypto/ec/curve448/decaf/common.h rename to crypto/ec/curve448/curve448utils.h diff --git a/crypto/ec/curve448/point_448.h b/crypto/ec/curve448/point_448.h index 1757129e84..066bd70c27 100644 --- a/crypto/ec/curve448/point_448.h +++ b/crypto/ec/curve448/point_448.h @@ -15,7 +15,7 @@ #ifndef __DECAF_POINT_448_H__ #define __DECAF_POINT_448_H__ 1 -#include +#include "curve448utils.h" #ifdef __cplusplus extern "C" { diff --git a/crypto/ec/curve448/shake.h b/crypto/ec/curve448/shake.h index ae125b923a..4a9ae5d303 100644 --- a/crypto/ec/curve448/shake.h +++ b/crypto/ec/curve448/shake.h @@ -15,7 +15,7 @@ #include #include /* for NULL */ -#include +#include "curve448utils.h" #ifdef __cplusplus extern "C" { diff --git a/crypto/ec/curve448/utils.c b/crypto/ec/curve448/utils.c index 80a6ea5b5b..b28a164980 100644 --- a/crypto/ec/curve448/utils.c +++ b/crypto/ec/curve448/utils.c @@ -8,7 +8,7 @@ * @brief Decaf utility functions. */ -#include +#include "curve448utils.h" void decaf_bzero ( void *s, diff --git a/crypto/ec/curve448/word.h b/crypto/ec/curve448/word.h index 7c7644ad2c..b62487797d 100644 --- a/crypto/ec/curve448/word.h +++ b/crypto/ec/curve448/word.h @@ -17,7 +17,7 @@ extern int posix_memalign(void **, size_t, size_t); #include #include "arch_intrinsics.h" -#include +#include "curve448utils.h" #ifndef _BSD_SOURCE #define _BSD_SOURCE 1 -- 2.25.1