blob: 68eacfc1615a70e1a9392d0fb3314c7ea0cb8028 [file] [log] [blame] [view]
Mateusz Starzyk44085de2021-05-19 13:22:53 +02001Replaced MBEDTLS_SHA512_NO_SHA384 with MBEDTLS_SHA384_C
2------------------------------------------------------
3
Bence Szépkútibb0cfeb2021-05-28 09:42:25 +02004This does not affect users who use the default `mbedtls_config.h`.
Mateusz Starzyk44085de2021-05-19 13:22:53 +02005MBEDTLS_SHA512_NO_SHA384 was disabled by default, now MBEDTLS_SHA384_C is
6enabled by default.
7
Mateusz Starzyk3489cc12021-05-20 13:52:48 +02008If you were using a config file with both MBEDTLS_SHA512_C and
9MBEDTLS_SHA512_NO_SHA384, then just remove the MBEDTLS_SHA512_NO_SHA384.
10If you were using a config file with MBEDTLS_SHA512_C and without
11MBEDTLS_SHA512_NO_SHA384 and you need the SHA-384 algorithm, then add
12`#define MBEDTLS_SHA384_C` to your config file.