From 1df4c6435f6ec04deb468fb7497b0e55d2155783 Mon Sep 17 00:00:00 2001 From: Gabor Mezei Date: Tue, 6 Jun 2023 17:18:03 +0200 Subject: [PATCH] Enable build of the new ecp_new.c file Signed-off-by: Gabor Mezei --- library/CMakeLists.txt | 1 + library/Makefile | 1 + 2 files changed, 2 insertions(+) diff --git a/library/CMakeLists.txt b/library/CMakeLists.txt index 8e70c46358..6fa21fa700 100644 --- a/library/CMakeLists.txt +++ b/library/CMakeLists.txt @@ -37,6 +37,7 @@ set(src_crypto ecdsa.c ecjpake.c ecp.c + ecp_new.c ecp_curves.c entropy.c entropy_poll.c diff --git a/library/Makefile b/library/Makefile index fafcdda8f7..766343ac81 100644 --- a/library/Makefile +++ b/library/Makefile @@ -102,6 +102,7 @@ OBJS_CRYPTO= \ ecdsa.o \ ecjpake.o \ ecp.o \ + ecp_new.o \ ecp_curves.o \ entropy.o \ entropy_poll.o \