commit | b66a991f0425922540c70935cb9bb43177df9900 | [log] [tgz] |
---|---|---|
author | Elena Uziunaite <elena.uziunaite@arm.com> | Fri May 10 14:25:58 2024 +0100 |
committer | Elena Uziunaite <elena.uziunaite@arm.com> | Thu Jul 18 14:31:59 2024 +0300 |
tree | 201fbb50c0cc97202c7697a0daff6f27d4d61939 | |
parent | 7ab9867fa7e6d27f3129f719cc0073a0e01a6de2 [diff] [blame] |
Replace MBEDTLS_MD_CAN_MD5 with PSA_WANT_ALG_MD5 Signed-off-by: Elena Uziunaite <elena.uziunaite@arm.com>
diff --git a/library/x509.c b/library/x509.c index 199c4fb..34b6a5a 100644 --- a/library/x509.c +++ b/library/x509.c
@@ -129,7 +129,7 @@ static inline const char *md_type_to_string(mbedtls_md_type_t md_alg) { switch (md_alg) { -#if defined(MBEDTLS_MD_CAN_MD5) +#if defined(PSA_WANT_ALG_MD5) case MBEDTLS_MD_MD5: return "MD5"; #endif