mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-03-31 01:20:35 +00:00
test: disable RSA support on the test ecc_no_bignum component
Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com> Signed-off-by: Valerio Setti <valerio.setti@nordicsemi.no>
This commit is contained in:
parent
abd00d0be8
commit
7dccb66d49
@ -425,7 +425,8 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(MBEDTLS_PK_C) && \
|
#if defined(MBEDTLS_PK_C) && \
|
||||||
!defined(MBEDTLS_RSA_C) && !defined(MBEDTLS_ECP_LIGHT)
|
!defined(MBEDTLS_RSA_C) && !defined(MBEDTLS_ECP_LIGHT) && \
|
||||||
|
!( defined(MBEDTLS_USE_PSA_CRYPTO) && defined(PSA_WANT_KEY_TYPE_ECC_PUBLIC_KEY) )
|
||||||
#error "MBEDTLS_PK_C defined, but not all prerequisites"
|
#error "MBEDTLS_PK_C defined, but not all prerequisites"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
#include "mbedtls/rsa.h"
|
#include "mbedtls/rsa.h"
|
||||||
#endif
|
#endif
|
||||||
#include "mbedtls/ecp.h"
|
#include "mbedtls/ecp.h"
|
||||||
#if defined(MBEDTLS_RSA_C) || defined(MBEDTLS_ECP_C)
|
#if defined(MBEDTLS_RSA_C) || defined(MBEDTLS_PK_HAVE_ECC_KEYS)
|
||||||
#include "pkwrite.h"
|
#include "pkwrite.h"
|
||||||
#endif
|
#endif
|
||||||
#if defined(MBEDTLS_PK_HAVE_ECC_KEYS)
|
#if defined(MBEDTLS_PK_HAVE_ECC_KEYS)
|
||||||
|
@ -85,7 +85,7 @@
|
|||||||
* + 2 * ECP_MAX (coords) [1]
|
* + 2 * ECP_MAX (coords) [1]
|
||||||
* }
|
* }
|
||||||
*/
|
*/
|
||||||
#define MBEDTLS_PK_ECP_PUB_DER_MAX_BYTES (30 + 2 * MBEDTLS_ECP_MAX_BYTES)
|
#define MBEDTLS_PK_ECP_PUB_DER_MAX_BYTES (30 + 2 * 66)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* EC private keys:
|
* EC private keys:
|
||||||
@ -96,7 +96,7 @@
|
|||||||
* publicKey [1] BIT STRING OPTIONAL 1 + 2 + [1] above
|
* publicKey [1] BIT STRING OPTIONAL 1 + 2 + [1] above
|
||||||
* }
|
* }
|
||||||
*/
|
*/
|
||||||
#define MBEDTLS_PK_ECP_PRV_DER_MAX_BYTES (29 + 3 * MBEDTLS_ECP_MAX_BYTES)
|
#define MBEDTLS_PK_ECP_PRV_DER_MAX_BYTES (29 + 3 * 66)
|
||||||
|
|
||||||
#else /* MBEDTLS_PK_HAVE_ECC_KEYS */
|
#else /* MBEDTLS_PK_HAVE_ECC_KEYS */
|
||||||
|
|
||||||
|
@ -2681,6 +2681,29 @@ config_psa_crypto_config_accel_ecc_no_bignum() {
|
|||||||
scripts/config.py unset MBEDTLS_PK_PARSE_EC_COMPRESSED
|
scripts/config.py unset MBEDTLS_PK_PARSE_EC_COMPRESSED
|
||||||
scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_DERIVE
|
scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_DERIVE
|
||||||
|
|
||||||
|
# RSA support is intentionally disabled on this test because RSA_C depends
|
||||||
|
# on BIGNUM_C.
|
||||||
|
scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_BASIC
|
||||||
|
scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_IMPORT
|
||||||
|
scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_EXPORT
|
||||||
|
scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_GENERATE
|
||||||
|
scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_KEY_TYPE_RSA_PUBLIC_KEY
|
||||||
|
for ALG in $(sed -n 's/^#define \(PSA_WANT_ALG_RSA_[0-9A-Z_a-z]*\).*/\1/p' <"$CRYPTO_CONFIG_H"); do
|
||||||
|
scripts/config.py -f include/psa/crypto_config.h unset $ALG
|
||||||
|
done
|
||||||
|
scripts/config.py unset MBEDTLS_RSA_C
|
||||||
|
scripts/config.py unset MBEDTLS_PKCS1_V15
|
||||||
|
scripts/config.py unset MBEDTLS_PKCS1_V21
|
||||||
|
scripts/config.py unset MBEDTLS_X509_RSASSA_PSS_SUPPORT
|
||||||
|
# Also disable key exchanges that depend on RSA
|
||||||
|
scripts/config.py unset MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED
|
||||||
|
scripts/config.py unset MBEDTLS_KEY_EXCHANGE_RSA_ENABLED
|
||||||
|
scripts/config.py unset MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED
|
||||||
|
scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED
|
||||||
|
scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED
|
||||||
|
|
||||||
|
# TODO: DHM and its reverse deps
|
||||||
|
|
||||||
# Restartable feature is not yet supported by PSA. Once it will in
|
# Restartable feature is not yet supported by PSA. Once it will in
|
||||||
# the future, the following line could be removed (see issues
|
# the future, the following line could be removed (see issues
|
||||||
# 6061, 6332 and following ones)
|
# 6061, 6332 and following ones)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user