mbedtls/docs/3.0-migration-guide.d/separate_SHA224_from_SHA256.md
Mateusz Starzyk 44085de5f7 Add migration guide for SHA384 and SHA224 options.
Signed-off-by: Mateusz Starzyk <mateusz.starzyk@mobica.com>
2021-05-19 13:22:53 +02:00

517 B

Separated MBEDTLS_SHA224_C and MBEDTLS_SHA256_C

This does not affect users who use the default config.h. MBEDTLS_SHA256_C was enabled by default. Now both MBEDTLS_SHA256_C and MBEDTLS_SHA224_C are enabled.

If you were using custom config file with MBEDTLS_SHA256_C enabled, then you will need to add #define MBEDTLS_SHA224_C option your config. Current version of the library does not support enabling MBEDTLS_SHA256_C without MBEDTLS_SHA224_C.