Ensure we accept the IANA name for sigalgs

Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26654)
This commit is contained in:
Viktor Dukhovni 2025-02-07 14:54:15 +00:00 committed by Tomas Mraz
parent 7d2d153f9d
commit 9a6bbf6169

View File

@ -3558,8 +3558,10 @@ static int sig_cb(const char *elem, int len, void *arg)
/* Check if a provider supports the sigalg */
for (i = 0; i < sarg->ctx->sigalg_list_len; i++) {
if (sarg->ctx->sigalg_list[i].sigalg_name != NULL
&& strcmp(etmp,
sarg->ctx->sigalg_list[i].sigalg_name) == 0) {
&& (strcmp(etmp,
sarg->ctx->sigalg_list[i].sigalg_name) == 0
|| strcmp(etmp,
sarg->ctx->sigalg_list[i].name) == 0)) {
sarg->sigalgs[sarg->sigalgcnt++] =
sarg->ctx->sigalg_list[i].code_point;
break;