mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-02-19 00:40:14 +00:00
This commit was generated using the following script: # ======================== #!/bin/sh git ls-files | grep -v '^ChangeLog' | xargs sed -b -E -i ' s/((check|crypto|full|mbedtls|query)_config)\.h/\1\nh/g s/config\.h/mbedtls_config.h/g y/\n/./ ' mv include/mbedtls/config.h include/mbedtls/mbedtls_config.h # ======================== Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
12 lines
525 B
Markdown
12 lines
525 B
Markdown
Separated MBEDTLS_SHA224_C and MBEDTLS_SHA256_C
|
|
-----------------------------------------------------------------
|
|
|
|
This does not affect users who use the default `mbedtls_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.
|