summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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