mirror of
https://github.com/openssl/openssl.git
synced 2024-12-15 06:01:37 +08:00
ctrl_params_translate: Allow get_rsa_payload_x() also for RSA-PSS
The get_rsa_payload_x() functions should also allow to get the payload for RSA-PSS keys. Signed-off-by: Ingo Franzki <ifranzki@linux.ibm.com> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21818)
This commit is contained in:
parent
e2c2cca4b2
commit
cf712830b7
@ -1842,7 +1842,8 @@ static int get_rsa_payload_n(enum state state,
|
||||
{
|
||||
const BIGNUM *bn = NULL;
|
||||
|
||||
if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA)
|
||||
if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA
|
||||
&& EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA_PSS)
|
||||
return 0;
|
||||
bn = RSA_get0_n(EVP_PKEY_get0_RSA(ctx->p2));
|
||||
|
||||
@ -1855,7 +1856,8 @@ static int get_rsa_payload_e(enum state state,
|
||||
{
|
||||
const BIGNUM *bn = NULL;
|
||||
|
||||
if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA)
|
||||
if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA
|
||||
&& EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA_PSS)
|
||||
return 0;
|
||||
bn = RSA_get0_e(EVP_PKEY_get0_RSA(ctx->p2));
|
||||
|
||||
@ -1868,7 +1870,8 @@ static int get_rsa_payload_d(enum state state,
|
||||
{
|
||||
const BIGNUM *bn = NULL;
|
||||
|
||||
if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA)
|
||||
if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA
|
||||
&& EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA_PSS)
|
||||
return 0;
|
||||
bn = RSA_get0_d(EVP_PKEY_get0_RSA(ctx->p2));
|
||||
|
||||
@ -1968,7 +1971,8 @@ static int get_rsa_payload_coefficient(enum state state,
|
||||
const struct translation_st *translation, \
|
||||
struct translation_ctx_st *ctx) \
|
||||
{ \
|
||||
if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA) \
|
||||
if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA \
|
||||
&& EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA_PSS) \
|
||||
return 0; \
|
||||
return get_rsa_payload_factor(state, translation, ctx, n - 1); \
|
||||
}
|
||||
@ -1979,7 +1983,8 @@ static int get_rsa_payload_coefficient(enum state state,
|
||||
const struct translation_st *translation, \
|
||||
struct translation_ctx_st *ctx) \
|
||||
{ \
|
||||
if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA) \
|
||||
if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA \
|
||||
&& EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA_PSS) \
|
||||
return 0; \
|
||||
return get_rsa_payload_exponent(state, translation, ctx, \
|
||||
n - 1); \
|
||||
@ -1991,7 +1996,8 @@ static int get_rsa_payload_coefficient(enum state state,
|
||||
const struct translation_st *translation, \
|
||||
struct translation_ctx_st *ctx) \
|
||||
{ \
|
||||
if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA) \
|
||||
if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA \
|
||||
&& EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA_PSS) \
|
||||
return 0; \
|
||||
return get_rsa_payload_coefficient(state, translation, ctx, \
|
||||
n - 1); \
|
||||
|
Loading…
Reference in New Issue
Block a user