From 2b038806284cf1c214877861f08ddcd722e934b6 Mon Sep 17 00:00:00 2001 From: Przemek Stekiel Date: Thu, 6 Oct 2022 12:08:25 +0200 Subject: [PATCH] Enable Key Wrapping mode for 128-bit block ciphers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is done to make configuration consistent with upstream and get rid of warnings. ssl_ticket.c:254:17: warning: implicit declaration of function ‘mbedtls_cipher_auth_encrypt_ext’ Signed-off-by: Przemek Stekiel --- tests/scripts/all.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh index 935053a800..dcb42e344d 100755 --- a/tests/scripts/all.sh +++ b/tests/scripts/all.sh @@ -1284,6 +1284,8 @@ component_test_tls1_2_default_stream_cipher_only () { # Modules that depend on AEAD scripts/config.py unset MBEDTLS_SSL_CONTEXT_SERIALIZATION scripts/config.py unset MBEDTLS_SSL_SESSION_TICKETS + # Enable Key Wrapping mode for 128-bit block ciphers + scripts/config.py set MBEDTLS_NIST_KW_C make @@ -1310,6 +1312,8 @@ component_test_tls1_2_default_stream_cipher_only_use_psa () { # Modules that depend on AEAD scripts/config.py unset MBEDTLS_SSL_CONTEXT_SERIALIZATION scripts/config.py unset MBEDTLS_SSL_SESSION_TICKETS + # Enable Key Wrapping mode for 128-bit block ciphers + scripts/config.py set MBEDTLS_NIST_KW_C make @@ -1335,6 +1339,8 @@ component_test_tls1_2_default_cbc_legacy_cipher_only () { # Modules that depend on AEAD scripts/config.py unset MBEDTLS_SSL_CONTEXT_SERIALIZATION scripts/config.py unset MBEDTLS_SSL_SESSION_TICKETS + # Enable Key Wrapping mode for 128-bit block ciphers + scripts/config.py set MBEDTLS_NIST_KW_C make @@ -1362,6 +1368,8 @@ component_test_tls1_2_deafult_cbc_legacy_cipher_only_use_psa () { # Modules that depend on AEAD scripts/config.py unset MBEDTLS_SSL_CONTEXT_SERIALIZATION scripts/config.py unset MBEDTLS_SSL_SESSION_TICKETS + # Enable Key Wrapping mode for 128-bit block ciphers + scripts/config.py set MBEDTLS_NIST_KW_C make @@ -1388,6 +1396,8 @@ component_test_tls1_2_default_cbc_legacy_cbc_etm_cipher_only () { # Modules that depend on AEAD scripts/config.py unset MBEDTLS_SSL_CONTEXT_SERIALIZATION scripts/config.py unset MBEDTLS_SSL_SESSION_TICKETS + # Enable Key Wrapping mode for 128-bit block ciphers + scripts/config.py set MBEDTLS_NIST_KW_C make @@ -1415,6 +1425,8 @@ component_test_tls1_2_default_cbc_legacy_cbc_etm_cipher_only_use_psa () { # Modules that depend on AEAD scripts/config.py unset MBEDTLS_SSL_CONTEXT_SERIALIZATION scripts/config.py unset MBEDTLS_SSL_SESSION_TICKETS + # Enable Key Wrapping mode for 128-bit block ciphers + scripts/config.py set MBEDTLS_NIST_KW_C make