mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-01-30 15:32:58 +00:00
dcc0ee1a1e
Signed-off-by: Tom Cosgrove <tom.cosgrove@arm.com>
13 lines
596 B
Plaintext
13 lines
596 B
Plaintext
Bugfix
|
|
* Fix an issue when compiling with MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT
|
|
enabled, which required specifying compiler flags enabling SHA3 Crypto
|
|
Extensions, where some compilers would emit EOR3 instructions in other
|
|
modules, which would then fail if run on a CPU without the SHA3
|
|
extensions. Fixes #5758.
|
|
|
|
Changes
|
|
* When enabling MBEDTLS_SHA256_USE_A64_CRYPTO_* or
|
|
MBEDTLS_SHA512_USE_A64_CRYPTO_*, it is no longer necessary to specify
|
|
compiler target flags on the command line; the library now sets target
|
|
options within the appropriate modules.
|