Skip to content

Commit 5f985be

Browse files
valeriosettifrkv
authored andcommitted
[nrf fromlist] tests: tls_configurations: adjust Kconfig in overlay-ec
CONFIG_PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_BASIC is promptless so it cannot be selected. Moreover it's also automatically enabled by CONFIG_PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_GENERATE in the same overlay file so there would be no need to explicitly enable it. As for the IMPORT, EXPORT, DERIVE they are needed for the TLS connection to work properly. Previously it was working because at least IMPORT and EXPORT are internally enabled by Mbed TLS at build time. So here we are basically doing the same enablements with Kconfigs in clear. Upstream PR #: 82862 Signed-off-by: Valerio Setti <[email protected]> Signed-off-by: Frank Audun Kvamtrø <[email protected]> (cherry picked from commit 85b07784ff9658ee1ecd3a4a2f09550839ad17d6)
1 parent 0f2b574 commit 5f985be

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
CONFIG_PSA_WANT_ALG_ECDH=y
22
CONFIG_PSA_WANT_ALG_ECDSA=y
3-
CONFIG_PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_BASIC=y
43
CONFIG_PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_GENERATE=y
4+
CONFIG_PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_IMPORT=y
5+
CONFIG_PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_EXPORT=y
6+
CONFIG_PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_DERIVE=y
57
CONFIG_PSA_WANT_ECC_SECP_R1_256=y

0 commit comments

Comments
 (0)