diff options
-rw-r--r-- | crypto/evp/ctrl_params_translate.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/crypto/evp/ctrl_params_translate.c b/crypto/evp/ctrl_params_translate.c index 32af4eedd3..808804ab3a 100644 --- a/crypto/evp/ctrl_params_translate.c +++ b/crypto/evp/ctrl_params_translate.c @@ -1512,8 +1512,14 @@ static int get_payload_group_name(enum state state, return 0; } - if (ctx->p2 != NULL) - ctx->p1 = strlen(ctx->p2); + /* + * Quietly ignoring unknown groups matches the behaviour on the provider + * side. + */ + if (ctx->p2 == NULL) + return 1; + + ctx->p1 = strlen(ctx->p2); return default_fixup_args(state, translation, ctx); } |