1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-10-20 03:32:32 +03:00

Add sigalg types to x509_crt.c

Signed-off-by: Ben Taylor <ben.taylor@linaro.org>
This commit is contained in:
Ben Taylor
2025-08-05 13:30:05 +01:00
parent 1c118a564d
commit 8e832b6594

View File

@@ -2126,7 +2126,7 @@ static int x509_crt_check_signature(const mbedtls_x509_crt *child,
} }
#if defined(MBEDTLS_ECP_RESTARTABLE) #if defined(MBEDTLS_ECP_RESTARTABLE)
if (rs_ctx != NULL && child->sig_pk == MBEDTLS_PK_ECDSA) { if (rs_ctx != NULL && child->sig_pk == MBEDTLS_PK_SIGALG_ECDSA) {
return mbedtls_pk_verify_restartable(&parent->pk, return mbedtls_pk_verify_restartable(&parent->pk,
child->sig_md, hash, hash_len, child->sig_md, hash, hash_len,
child->sig.p, child->sig.len, &rs_ctx->pk); child->sig.p, child->sig.len, &rs_ctx->pk);