summaryrefslogtreecommitdiffstats
path: root/crypto/ec/curve448
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2017-11-15 16:24:32 +0000
committerMatt Caswell <matt@openssl.org>2018-02-20 12:59:29 +0000
commitf8385b0fc0215b378b61891582b0579659d0b9f4 (patch)
treebfe590d05085e90c9c2e38b42c117cb6360a986b /crypto/ec/curve448
parent893b7c4f17fbb005894553807002e2a74f1163b8 (diff)
Remove the curve448/decaf sub-directory
Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de> (Merged from https://github.com/openssl/openssl/pull/5105)
Diffstat (limited to 'crypto/ec/curve448')
-rw-r--r--crypto/ec/curve448/curve448utils.h (renamed from crypto/ec/curve448/decaf/common.h)0
-rw-r--r--crypto/ec/curve448/point_448.h2
-rw-r--r--crypto/ec/curve448/shake.h2
-rw-r--r--crypto/ec/curve448/utils.c2
-rw-r--r--crypto/ec/curve448/word.h2
5 files changed, 4 insertions, 4 deletions
diff --git a/crypto/ec/curve448/decaf/common.h b/crypto/ec/curve448/curve448utils.h
index 71f8795e6e..71f8795e6e 100644
--- a/crypto/ec/curve448/decaf/common.h
+++ b/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 <decaf/common.h>
+#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 <sys/types.h>
#include <stdlib.h> /* for NULL */
-#include <decaf/common.h>
+#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 <decaf/common.h>
+#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 <stdint.h>
#include "arch_intrinsics.h"
-#include <decaf/common.h>
+#include "curve448utils.h"
#ifndef _BSD_SOURCE
#define _BSD_SOURCE 1