1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

ecp_curves: Introduced mbedtls_ecp_mod_p224k1()

This patch introduces a `MBEDTLS_STATIC_TESTABLE` helper
method which exposes `ecp_mod_p256k1()` to the test-framework

Signed-off-by: Minos Galanakis <minos.galanakis@arm.com>
This commit is contained in:
Minos Galanakis
2023-04-13 12:22:41 +01:00
parent e5dab975c6
commit 9d80879f90
2 changed files with 10 additions and 3 deletions

View File

@ -182,7 +182,7 @@ int mbedtls_ecp_mod_p192k1(mbedtls_mpi *N);
#if defined(MBEDTLS_ECP_DP_SECP224K1_ENABLED)
MBEDTLS_STATIC_TESTABLE
int ecp_mod_p224k1(mbedtls_mpi *N);
int mbedtls_ecp_mod_p224k1(mbedtls_mpi *N);
#endif /* MBEDTLS_ECP_DP_SECP224K1_ENABLED */