psa: config: Improve handling of not supported ECC curves
Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
parent
51a3b7d79c
commit
e1f5516025
2 changed files with 20 additions and 2 deletions
|
@ -419,6 +419,11 @@ extern "C" {
|
||||||
|
|
||||||
#if defined(PSA_WANT_ECC_MONTGOMERY_448)
|
#if defined(PSA_WANT_ECC_MONTGOMERY_448)
|
||||||
#if !defined(MBEDTLS_PSA_ACCEL_ECC_MONTGOMERY_448)
|
#if !defined(MBEDTLS_PSA_ACCEL_ECC_MONTGOMERY_448)
|
||||||
|
/*
|
||||||
|
* Curve448 is not yet supported via the PSA API in Mbed TLS
|
||||||
|
* (https://github.com/ARMmbed/mbedtls/issues/4249).
|
||||||
|
*/
|
||||||
|
#error "Curve448 is not yet supported via the PSA API in Mbed TLS."
|
||||||
#define MBEDTLS_ECP_DP_CURVE448_ENABLED
|
#define MBEDTLS_ECP_DP_CURVE448_ENABLED
|
||||||
#define MBEDTLS_PSA_BUILTIN_ECC_MONTGOMERY_448 1
|
#define MBEDTLS_PSA_BUILTIN_ECC_MONTGOMERY_448 1
|
||||||
#endif /* !MBEDTLS_PSA_ACCEL_ECC_MONTGOMERY_448 */
|
#endif /* !MBEDTLS_PSA_ACCEL_ECC_MONTGOMERY_448 */
|
||||||
|
@ -468,6 +473,11 @@ extern "C" {
|
||||||
|
|
||||||
#if defined(PSA_WANT_ECC_SECP_K1_224)
|
#if defined(PSA_WANT_ECC_SECP_K1_224)
|
||||||
#if !defined(MBEDTLS_PSA_ACCEL_ECC_SECP_K1_224)
|
#if !defined(MBEDTLS_PSA_ACCEL_ECC_SECP_K1_224)
|
||||||
|
/*
|
||||||
|
* SECP224K1 is buggy via the PSA API in Mbed TLS
|
||||||
|
* (https://github.com/ARMmbed/mbedtls/issues/3541).
|
||||||
|
*/
|
||||||
|
#error "SECP224K1 is buggy via the PSA API in Mbed TLS."
|
||||||
#define MBEDTLS_ECP_DP_SECP224K1_ENABLED
|
#define MBEDTLS_ECP_DP_SECP224K1_ENABLED
|
||||||
#define MBEDTLS_PSA_BUILTIN_ECC_SECP_K1_224 1
|
#define MBEDTLS_PSA_BUILTIN_ECC_SECP_K1_224 1
|
||||||
#endif /* !MBEDTLS_PSA_ACCEL_ECC_SECP_K1_224 */
|
#endif /* !MBEDTLS_PSA_ACCEL_ECC_SECP_K1_224 */
|
||||||
|
|
|
@ -87,10 +87,18 @@
|
||||||
#define PSA_WANT_ECC_BRAINPOOL_P_R1_384 1
|
#define PSA_WANT_ECC_BRAINPOOL_P_R1_384 1
|
||||||
#define PSA_WANT_ECC_BRAINPOOL_P_R1_512 1
|
#define PSA_WANT_ECC_BRAINPOOL_P_R1_512 1
|
||||||
#define PSA_WANT_ECC_MONTGOMERY_255 1
|
#define PSA_WANT_ECC_MONTGOMERY_255 1
|
||||||
/* Curve448 is not yet supported via the PSA API (https://github.com/ARMmbed/mbedtls/issues/4249) */
|
/*
|
||||||
|
* Curve448 is not yet supported via the PSA API in Mbed TLS
|
||||||
|
* (https://github.com/ARMmbed/mbedtls/issues/4249). Thus, do not enable it by
|
||||||
|
* default.
|
||||||
|
*/
|
||||||
//#define PSA_WANT_ECC_MONTGOMERY_448 1
|
//#define PSA_WANT_ECC_MONTGOMERY_448 1
|
||||||
#define PSA_WANT_ECC_SECP_K1_192 1
|
#define PSA_WANT_ECC_SECP_K1_192 1
|
||||||
/* SECP224K1 is buggy via the PSA API (https://github.com/ARMmbed/mbedtls/issues/3541) */
|
/*
|
||||||
|
* SECP224K1 is buggy via the PSA API in Mbed TLS
|
||||||
|
* (https://github.com/ARMmbed/mbedtls/issues/3541). Thus, do not enable it by
|
||||||
|
* default.
|
||||||
|
*/
|
||||||
//#define PSA_WANT_ECC_SECP_K1_224 1
|
//#define PSA_WANT_ECC_SECP_K1_224 1
|
||||||
#define PSA_WANT_ECC_SECP_K1_256 1
|
#define PSA_WANT_ECC_SECP_K1_256 1
|
||||||
#define PSA_WANT_ECC_SECP_R1_192 1
|
#define PSA_WANT_ECC_SECP_R1_192 1
|
||||||
|
|
Loading…
Reference in a new issue