diff options
-rw-r--r-- | GNUmakefile | 2 | ||||
-rw-r--r-- | ecdsa.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 0637f76..638a65a 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -70,7 +70,7 @@ KS_OBJ_FLASH = ${KS_OBJ_COMMON} ks_flash.o KS_OBJ = ${KS_OBJ_MMAP} TFMDIR := $(abspath ../thirdparty/libtfm) -CFLAGS += -g3 -Wall -fPIC -std=c99 -I${TFMDIR} -DHAL_ECDSA_DEBUG_ONLY_STATIC_TEST_VECTOR_RANDOM=1 +CFLAGS += -g3 -Wall -fPIC -std=c99 -I${TFMDIR} LDFLAGS := -g3 -L${TFMDIR} -ltfm CFLAGS += -DHAL_STATIC_HASH_STATE_BLOCKS=${STATIC_HASH_STATE_BLOCKS} @@ -738,7 +738,7 @@ static inline hal_error_t get_random(void *buffer, const size_t length) static inline hal_error_t get_random(void *buffer, const size_t length) { - return hal_get_random(buffer, length); + return hal_get_random(NULL, buffer, length); } #endif /* HAL_ECDSA_DEBUG_ONLY_STATIC_TEST_VECTOR_RANDOM */ |