diff --git a/ChangeLog.d/build-without-sha.txt b/ChangeLog.d/build-without-sha.txt new file mode 100644 index 0000000000..78ba27694a --- /dev/null +++ b/ChangeLog.d/build-without-sha.txt @@ -0,0 +1,3 @@ +Bugfix + * Fix the build when no SHA2 module is included. Fixes #4930. + * Fix the build when only the bignum module is included. Fixes #4929. diff --git a/include/mbedtls/entropy.h b/include/mbedtls/entropy.h index ac977cf817..eea786e352 100644 --- a/include/mbedtls/entropy.h +++ b/include/mbedtls/entropy.h @@ -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. */ diff --git a/library/bignum.c b/library/bignum.c index 3df905203f..c553d0c5af 100644 --- a/library/bignum.c +++ b/library/bignum.c @@ -72,6 +72,7 @@ #include "mbedtls/bn_mul.h" #include "mbedtls/platform_util.h" +#include #include #if defined(MBEDTLS_PLATFORM_C)