mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-05-11 09:22:06 +00:00
Ensure MBEDTLS_ECDSA_C is set when DETERMINISTIC_ECDSA is used
Ensure that MBEDTLS_ECDSA_C is set when PSA_WANT_ALG_DETERMINISTIC_ECDSA is requested. Also added MBEDTLS_ECDSA_C to the requirements comment in config.h for MBEDTLS_ECDSA_DETERMINISTIC. Signed-off-by: John Durkop <john.durkop@fermatsoftware.com>
This commit is contained in:
parent
8ac0b80e9b
commit
36a82e5a6b
|
@ -864,7 +864,7 @@
|
||||||
* may result in a compromise of the long-term signing key. This is avoided by
|
* may result in a compromise of the long-term signing key. This is avoided by
|
||||||
* the deterministic variant.
|
* the deterministic variant.
|
||||||
*
|
*
|
||||||
* Requires: MBEDTLS_HMAC_DRBG_C
|
* Requires: MBEDTLS_HMAC_DRBG_C, MBEDTLS_ECDSA_C
|
||||||
*
|
*
|
||||||
* Comment this macro to disable deterministic ECDSA.
|
* Comment this macro to disable deterministic ECDSA.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -51,6 +51,7 @@ extern "C" {
|
||||||
#if !defined(MBEDTLS_PSA_ACCEL_ALG_DETERMINISTIC_ECDSA)
|
#if !defined(MBEDTLS_PSA_ACCEL_ALG_DETERMINISTIC_ECDSA)
|
||||||
#define MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA 1
|
#define MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA 1
|
||||||
#define MBEDTLS_ECDSA_DETERMINISTIC
|
#define MBEDTLS_ECDSA_DETERMINISTIC
|
||||||
|
#define MBEDTLS_ECDSA_C
|
||||||
#define MBEDTLS_HMAC_DRBG_C
|
#define MBEDTLS_HMAC_DRBG_C
|
||||||
#define MBEDTLS_MD_C
|
#define MBEDTLS_MD_C
|
||||||
#endif /* MBEDTLS_PSA_ACCEL_ALG_DETERMINISTIC_ECDSA */
|
#endif /* MBEDTLS_PSA_ACCEL_ALG_DETERMINISTIC_ECDSA */
|
||||||
|
|
Loading…
Reference in a new issue