mbed_tls: don't byteswap if HW acceleration is already big endian #431
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Tested on:
esp32:
esp32s3:
should also work on esp32s2, esp32c3, esp32c6, esp32p4, etc
Please note:
There's 4 implementations: software, parallel engine, block engine, dma
SOC_SHA_SUPPORT_PARALLEL_ENG is only defined for esp32. esp32s3 uses DMA
SOC_SHA_ENDIANNESS_BE is not available in release branches, only in master and only for esp32 AFAIK
example of how idf checks for things https://github.com/espressif/esp-idf/blob/master/components/mbedtls/port/sha/esp_sha.c#L19
We depend on
#include <soc/soc_caps.h>
to get SOC_SHA_SUPPORT_PARALLEL_ENG (which wasn't available to wally before!!!) and we depend on `#include <sdkconfig.h> to get CONFIG_MBEDTLS_HARDWARE_SHA which is necessary to distinguish between mbedtls with or without hw acceleration.instead of including sdkconfig.h (and or soc_caps.h) we could have other flags like
HAVE_MBEDTLS_SHA256_H
andHAVE_MBEDTLS_SHA512_H