Fix builds when config.h only defines MBEDTLS_BIGNUM_C

Fixes #4929

Signed-off-by: Tom Cosgrove <[email protected]>
This commit is contained in:
Tom Cosgrove
2021-12-06 20:42:50 +01:00
committed by Gilles Peskine
parent 1d2c74cee0
commit 7b420a896f
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -157,7 +157,7 @@ typedef struct mbedtls_entropy_context
* -1 after free. */
#if defined(MBEDTLS_ENTROPY_SHA512_ACCUMULATOR)
mbedtls_sha512_context accumulator;
#else
#elif defined(MBEDTLS_ENTROPY_SHA256_ACCUMULATOR)
mbedtls_sha256_context accumulator;
#endif
int source_count; /* Number of entries used in source. */
+1
View File
@@ -72,6 +72,7 @@
#include "mbedtls/bn_mul.h"
#include "mbedtls/platform_util.h"
#include <limits.h>
#include <string.h>
#if defined(MBEDTLS_PLATFORM_C)