From 0c655572dca647e87a5df6dfda0f02a0c81f0c89 Mon Sep 17 00:00:00 2001 From: Gabor Mezei Date: Mon, 18 Jul 2022 23:08:26 +0200 Subject: [PATCH] Build the new bignum_new.c file Signed-off-by: Gabor Mezei --- include/mbedtls/mbedtls_config.h | 2 +- library/CMakeLists.txt | 1 + library/Makefile | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/include/mbedtls/mbedtls_config.h b/include/mbedtls/mbedtls_config.h index e96a79733..97ad17894 100644 --- a/include/mbedtls/mbedtls_config.h +++ b/include/mbedtls/mbedtls_config.h @@ -2009,7 +2009,7 @@ * * Enable the multi-precision integer library. * - * Module: library/bignum.c + * Module: library/bignum.c, library/bignum_new.c * Caller: library/dhm.c * library/ecp.c * library/ecdsa.c diff --git a/library/CMakeLists.txt b/library/CMakeLists.txt index ed58a9e0d..19ba315cf 100644 --- a/library/CMakeLists.txt +++ b/library/CMakeLists.txt @@ -18,6 +18,7 @@ set(src_crypto asn1write.c base64.c bignum.c + bignum_new.c camellia.c ccm.c chacha20.c diff --git a/library/Makefile b/library/Makefile index 3c4c7ea5e..ac8f3318b 100644 --- a/library/Makefile +++ b/library/Makefile @@ -83,6 +83,7 @@ OBJS_CRYPTO= \ asn1write.o \ base64.o \ bignum.o \ + bignum_new.o \ camellia.o \ ccm.o \ chacha20.o \