mbedtls: add specific Kconfig option for MBEDTLS_USE_PSA_CRYPTO
MBEDTLS_PSA_CRYPTO_C and MBEDTLS_USE_PSA_CRYPTO are 2 different things and the former should not automatically enable the latter. The reson is that the user might want the MbedTLS PSA crypto toolbox to be built, but at the same time he/she does not want TLS/DTLS (and other intermediate modules such as PK, MD and Cipher) to use PSA APIs. For this reason this commit introduces a new Kconfig option named CONFIG_MBEDTLS_USE_PSA_CRYPTO to enable the corresponding build symbol. By default USE_PSA_CRYPTO is disabled. It is only explicilty enabled in tests/samples that were previously setting CRYPTO_C (since in those cases USE_PSA was set). Signed-off-by: Valerio Setti <vsetti@baylibre.com>
This commit is contained in:
parent
9d5021befd
commit
f539b661d6
4 changed files with 11 additions and 0 deletions
|
@ -1349,6 +1349,7 @@ config BT_MESH_USES_MBEDTLS_PSA
|
|||
select MBEDTLS
|
||||
select MBEDTLS_ZEPHYR_ENTROPY
|
||||
select MBEDTLS_PSA_CRYPTO_C
|
||||
select MBEDTLS_USE_PSA_CRYPTO
|
||||
select MBEDTLS_MAC_CMAC_ENABLED
|
||||
select MBEDTLS_CIPHER_AES_ENABLED
|
||||
select MBEDTLS_AES_ROM_TABLES
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue