mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
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:
parent
7d2d153f9d
commit
9a6bbf6169
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user