]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/rsa/rsa_lib.c
Reduce optimization in hppa builds
[thirdparty/openssl.git] / crypto / rsa / rsa_lib.c
CommitLineData
2039c421 1/*
b6461792 2 * Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved.
d02b48c6 3 *
2a7b6f39 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
2039c421
RS
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
d02b48c6
RE
8 */
9
c5f87134
P
10/*
11 * RSA low level APIs are deprecated for public use, but still ok for
12 * internal use.
13 */
14#include "internal/deprecated.h"
15
ec577822 16#include <openssl/crypto.h>
89abd1b6 17#include <openssl/core_names.h>
3f773c91
TM
18#ifndef FIPS_MODULE
19# include <openssl/engine.h>
20#endif
89abd1b6 21#include <openssl/evp.h>
da9988e0 22#include <openssl/param_build.h>
b39fc560 23#include "internal/cryptlib.h"
cd420b0b 24#include "internal/refcount.h"
25f2138b 25#include "crypto/bn.h"
25f2138b 26#include "crypto/evp.h"
c3a4fa4c 27#include "crypto/rsa.h"
55f02cb6 28#include "crypto/security_bits.h"
706457b7 29#include "rsa_local.h"
d02b48c6 30
b4250010 31static RSA *rsa_new_intern(ENGINE *engine, OSSL_LIB_CTX *libctx);
afb638f1 32
f844f9eb 33#ifndef FIPS_MODULE
6b691a5c 34RSA *RSA_new(void)
0f113f3e 35{
afb638f1 36 return rsa_new_intern(NULL, NULL);
0f113f3e 37}
ce8b2574 38
29c1f061 39const RSA_METHOD *RSA_get_method(const RSA *rsa)
0f113f3e
MC
40{
41 return rsa->meth;
42}
cb78486d
GT
43
44int RSA_set_method(RSA *rsa, const RSA_METHOD *meth)
0f113f3e
MC
45{
46 /*
47 * NB: The caller is specifically setting a method, so it's not up to us
48 * to deal with which ENGINE it comes from.
49 */
50 const RSA_METHOD *mtmp;
51 mtmp = rsa->meth;
52 if (mtmp->finish)
53 mtmp->finish(rsa);
0b13e9f0 54#ifndef OPENSSL_NO_ENGINE
7c96dbcd
RS
55 ENGINE_finish(rsa->engine);
56 rsa->engine = NULL;
0b13e9f0 57#endif
0f113f3e
MC
58 rsa->meth = meth;
59 if (meth->init)
60 meth->init(rsa);
61 return 1;
62}
ce8b2574 63
5270e702 64RSA *RSA_new_method(ENGINE *engine)
afb638f1
MC
65{
66 return rsa_new_intern(engine, NULL);
67}
68#endif
69
b4250010 70RSA *ossl_rsa_new_with_ctx(OSSL_LIB_CTX *libctx)
afb638f1
MC
71{
72 return rsa_new_intern(NULL, libctx);
73}
74
b4250010 75static RSA *rsa_new_intern(ENGINE *engine, OSSL_LIB_CTX *libctx)
0f113f3e 76{
11ed851d 77 RSA *ret = OPENSSL_zalloc(sizeof(*ret));
d02b48c6 78
e077455e 79 if (ret == NULL)
0f113f3e 80 return NULL;
d02b48c6 81
11ed851d
F
82 ret->lock = CRYPTO_THREAD_lock_new();
83 if (ret->lock == NULL) {
e077455e 84 ERR_raise(ERR_LIB_RSA, ERR_R_CRYPTO_LIB);
11ed851d
F
85 OPENSSL_free(ret);
86 return NULL;
87 }
88
97beb77f
P
89 if (!CRYPTO_NEW_REF(&ret->references, 1)) {
90 CRYPTO_THREAD_lock_free(ret->lock);
91 OPENSSL_free(ret);
92 return NULL;
93 }
97937cfc 94
afb638f1 95 ret->libctx = libctx;
0f113f3e 96 ret->meth = RSA_get_default_method();
f844f9eb 97#if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
11ed851d 98 ret->flags = ret->meth->flags & ~RSA_FLAG_NON_FIPS_ALLOW;
0f113f3e
MC
99 if (engine) {
100 if (!ENGINE_init(engine)) {
9311d0c4 101 ERR_raise(ERR_LIB_RSA, ERR_R_ENGINE_LIB);
11ed851d 102 goto err;
0f113f3e
MC
103 }
104 ret->engine = engine;
90862ab4 105 } else {
0f113f3e 106 ret->engine = ENGINE_get_default_RSA();
90862ab4 107 }
0f113f3e
MC
108 if (ret->engine) {
109 ret->meth = ENGINE_get_RSA(ret->engine);
7c96dbcd 110 if (ret->meth == NULL) {
9311d0c4 111 ERR_raise(ERR_LIB_RSA, ERR_R_ENGINE_LIB);
11ed851d 112 goto err;
0f113f3e
MC
113 }
114 }
0b13e9f0 115#endif
0c9de428 116
0f113f3e 117 ret->flags = ret->meth->flags & ~RSA_FLAG_NON_FIPS_ALLOW;
f844f9eb 118#ifndef FIPS_MODULE
0f113f3e 119 if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_RSA, ret, &ret->ex_data)) {
11ed851d 120 goto err;
d188a536 121 }
a3327784 122#endif
d188a536
AG
123
124 if ((ret->meth->init != NULL) && !ret->meth->init(ret)) {
9311d0c4 125 ERR_raise(ERR_LIB_RSA, ERR_R_INIT_FAIL);
11ed851d 126 goto err;
0f113f3e 127 }
d188a536
AG
128
129 return ret;
11ed851d 130
544648a8 131 err:
11ed851d
F
132 RSA_free(ret);
133 return NULL;
0f113f3e 134}
d02b48c6 135
6b691a5c 136void RSA_free(RSA *r)
0f113f3e
MC
137{
138 int i;
d02b48c6 139
0f113f3e
MC
140 if (r == NULL)
141 return;
d02b48c6 142
97937cfc 143 CRYPTO_DOWN_REF(&r->references, &i);
f3f1cf84 144 REF_PRINT_COUNT("RSA", r);
0f113f3e
MC
145 if (i > 0)
146 return;
f3f1cf84 147 REF_ASSERT_ISNT(i < 0);
d02b48c6 148
0c5d725e 149 if (r->meth != NULL && r->meth->finish != NULL)
0f113f3e 150 r->meth->finish(r);
f844f9eb 151#if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
412bafdc 152 ENGINE_finish(r->engine);
0b13e9f0 153#endif
d02b48c6 154
f844f9eb 155#ifndef FIPS_MODULE
0f113f3e 156 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_RSA, r, &r->ex_data);
a3327784 157#endif
7abe8305 158
d188a536 159 CRYPTO_THREAD_lock_free(r->lock);
97937cfc 160 CRYPTO_FREE_REF(&r->references);
d188a536 161
c033101d
MB
162 BN_free(r->n);
163 BN_free(r->e);
23a1d5e9
RS
164 BN_clear_free(r->d);
165 BN_clear_free(r->p);
166 BN_clear_free(r->q);
167 BN_clear_free(r->dmp1);
168 BN_clear_free(r->dmq1);
169 BN_clear_free(r->iqmp);
4f2271d5
SL
170
171#if defined(FIPS_MODULE) && !defined(OPENSSL_NO_ACVP_TESTS)
4158b0dc 172 ossl_rsa_acvp_test_free(r->acvp_test);
4f2271d5
SL
173#endif
174
f844f9eb 175#ifndef FIPS_MODULE
d771441d 176 RSA_PSS_PARAMS_free(r->pss);
4158b0dc 177 sk_RSA_PRIME_INFO_pop_free(r->prime_infos, ossl_rsa_multip_info_free);
afb638f1 178#endif
23a1d5e9
RS
179 BN_BLINDING_free(r->blinding);
180 BN_BLINDING_free(r->mt_blinding);
0f113f3e
MC
181 OPENSSL_free(r);
182}
d02b48c6 183
6ac4e8bd 184int RSA_up_ref(RSA *r)
0f113f3e 185{
d188a536
AG
186 int i;
187
97937cfc 188 if (CRYPTO_UP_REF(&r->references, &i) <= 0)
d188a536 189 return 0;
f3f1cf84
RS
190
191 REF_PRINT_COUNT("RSA", r);
192 REF_ASSERT_ISNT(i < 2);
8686c474 193 return i > 1 ? 1 : 0;
0f113f3e 194}
5cbc2e8b 195
b4250010 196OSSL_LIB_CTX *ossl_rsa_get0_libctx(RSA *r)
8a758e96
RL
197{
198 return r->libctx;
199}
200
6963979f
RL
201void ossl_rsa_set0_libctx(RSA *r, OSSL_LIB_CTX *libctx)
202{
203 r->libctx = libctx;
204}
205
f844f9eb 206#ifndef FIPS_MODULE
dd9d233e 207int RSA_set_ex_data(RSA *r, int idx, void *arg)
0f113f3e 208{
8686c474 209 return CRYPTO_set_ex_data(&r->ex_data, idx, arg);
0f113f3e 210}
58964a49 211
29c1f061 212void *RSA_get_ex_data(const RSA *r, int idx)
0f113f3e 213{
8686c474 214 return CRYPTO_get_ex_data(&r->ex_data, idx);
0f113f3e 215}
a3327784 216#endif
58964a49 217
97b0b713
P
218/*
219 * Define a scaling constant for our fixed point arithmetic.
220 * This value must be a power of two because the base two logarithm code
221 * makes this assumption. The exponent must also be a multiple of three so
222 * that the scale factor has an exact cube root. Finally, the scale factor
223 * should not be so large that a multiplication of two scaled numbers
224 * overflows a 64 bit unsigned integer.
225 */
226static const unsigned int scale = 1 << 18;
227static const unsigned int cbrt_scale = 1 << (2 * 18 / 3);
228
229/* Define some constants, none exceed 32 bits */
230static const unsigned int log_2 = 0x02c5c8; /* scale * log(2) */
231static const unsigned int log_e = 0x05c551; /* scale * log2(M_E) */
232static const unsigned int c1_923 = 0x07b126; /* scale * 1.923 */
233static const unsigned int c4_690 = 0x12c28f; /* scale * 4.690 */
234
235/*
2beb004b 236 * Multiply two scaled integers together and rescale the result.
97b0b713
P
237 */
238static ossl_inline uint64_t mul2(uint64_t a, uint64_t b)
239{
240 return a * b / scale;
241}
242
243/*
244 * Calculate the cube root of a 64 bit scaled integer.
245 * Although the cube root of a 64 bit number does fit into a 32 bit unsigned
246 * integer, this is not guaranteed after scaling, so this function has a
247 * 64 bit return. This uses the shifting nth root algorithm with some
248 * algebraic simplifications.
249 */
250static uint64_t icbrt64(uint64_t x)
251{
252 uint64_t r = 0;
253 uint64_t b;
254 int s;
255
256 for (s = 63; s >= 0; s -= 3) {
257 r <<= 1;
258 b = 3 * r * (r + 1) + 1;
259 if ((x >> s) >= b) {
260 x -= b << s;
261 r++;
262 }
263 }
264 return r * cbrt_scale;
265}
266
267/*
268 * Calculate the natural logarithm of a 64 bit scaled integer.
269 * This is done by calculating a base two logarithm and scaling.
270 * The maximum logarithm (base 2) is 64 and this reduces base e, so
271 * a 32 bit result should not overflow. The argument passed must be
272 * greater than unity so we don't need to handle negative results.
273 */
274static uint32_t ilog_e(uint64_t v)
275{
276 uint32_t i, r = 0;
277
278 /*
279 * Scale down the value into the range 1 .. 2.
280 *
281 * If fractional numbers need to be processed, another loop needs
282 * to go here that checks v < scale and if so multiplies it by 2 and
283 * reduces r by scale. This also means making r signed.
284 */
285 while (v >= 2 * scale) {
286 v >>= 1;
287 r += scale;
288 }
289 for (i = scale / 2; i != 0; i /= 2) {
290 v = mul2(v, v);
291 if (v >= 2 * scale) {
292 v >>= 1;
293 r += i;
294 }
295 }
296 r = (r * (uint64_t)scale) / log_e;
297 return r;
298}
299
300/*
301 * NIST SP 800-56B rev 2 Appendix D: Maximum Security Strength Estimates for IFC
302 * Modulus Lengths.
303 *
55f02cb6
SL
304 * Note that this formula is also referred to in SP800-56A rev3 Appendix D:
305 * for FFC safe prime groups for modp and ffdhe.
306 * After Table 25 and Table 26 it refers to
307 * "The maximum security strength estimates were calculated using the formula in
308 * Section 7.5 of the FIPS 140 IG and rounded to the nearest multiple of eight
309 * bits".
310 *
311 * The formula is:
312 *
97b0b713
P
313 * E = \frac{1.923 \sqrt[3]{nBits \cdot log_e(2)}
314 * \cdot(log_e(nBits \cdot log_e(2))^{2/3} - 4.69}{log_e(2)}
315 * The two cube roots are merged together here.
316 */
9500c823 317uint16_t ossl_ifc_ffc_compute_security_bits(int n)
97b0b713
P
318{
319 uint64_t x;
320 uint32_t lx;
1cf520e9 321 uint16_t y, cap;
97b0b713 322
1cf520e9
P
323 /*
324 * Look for common values as listed in standards.
f7e2e513 325 * These values are not exactly equal to the results from the formulae in
1cf520e9
P
326 * the standards but are defined to be canonical.
327 */
97b0b713 328 switch (n) {
1cf520e9 329 case 2048: /* SP 800-56B rev 2 Appendix D and FIPS 140-2 IG 7.5 */
97b0b713 330 return 112;
1cf520e9 331 case 3072: /* SP 800-56B rev 2 Appendix D and FIPS 140-2 IG 7.5 */
97b0b713 332 return 128;
1cf520e9 333 case 4096: /* SP 800-56B rev 2 Appendix D */
97b0b713 334 return 152;
1cf520e9 335 case 6144: /* SP 800-56B rev 2 Appendix D */
97b0b713 336 return 176;
1cf520e9
P
337 case 7680: /* FIPS 140-2 IG 7.5 */
338 return 192;
339 case 8192: /* SP 800-56B rev 2 Appendix D */
97b0b713 340 return 200;
1cf520e9
P
341 case 15360: /* FIPS 140-2 IG 7.5 */
342 return 256;
97b0b713 343 }
1cf520e9 344
97b0b713
P
345 /*
346 * The first incorrect result (i.e. not accurate or off by one low) occurs
347 * for n = 699668. The true value here is 1200. Instead of using this n
348 * as the check threshold, the smallest n such that the correct result is
349 * 1200 is used instead.
350 */
351 if (n >= 687737)
352 return 1200;
353 if (n < 8)
354 return 0;
355
1cf520e9
P
356 /*
357 * To ensure that the output is non-decreasing with respect to n,
358 * a cap needs to be applied to the two values where the function over
359 * estimates the strength (according to the above fast path).
360 */
361 if (n <= 7680)
362 cap = 192;
363 else if (n <= 15360)
364 cap = 256;
365 else
366 cap = 1200;
367
97b0b713
P
368 x = n * (uint64_t)log_2;
369 lx = ilog_e(x);
370 y = (uint16_t)((mul2(c1_923, icbrt64(mul2(mul2(x, lx), lx))) - c4_690)
371 / log_2);
1cf520e9
P
372 y = (y + 4) & ~7;
373 if (y > cap)
374 y = cap;
375 return y;
97b0b713
P
376}
377
55f02cb6
SL
378
379
2514fa79 380int RSA_security_bits(const RSA *rsa)
0f113f3e 381{
0122add6
AP
382 int bits = BN_num_bits(rsa->n);
383
f844f9eb 384#ifndef FIPS_MODULE
0122add6
AP
385 if (rsa->version == RSA_ASN1_VERSION_MULTI) {
386 /* This ought to mean that we have private key at hand. */
387 int ex_primes = sk_RSA_PRIME_INFO_num(rsa->prime_infos);
388
4158b0dc 389 if (ex_primes <= 0 || (ex_primes + 2) > ossl_rsa_multip_cap(bits))
0122add6
AP
390 return 0;
391 }
afb638f1 392#endif
9500c823 393 return ossl_ifc_ffc_compute_security_bits(bits);
0f113f3e 394}
9862e9aa
RL
395
396int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d)
397{
fd809cfd 398 /* If the fields n and e in r are NULL, the corresponding input
1da12e34
RL
399 * parameters MUST be non-NULL for n and e. d may be
400 * left NULL (in case only the public key is used).
1da12e34 401 */
b84e1226
MC
402 if ((r->n == NULL && n == NULL)
403 || (r->e == NULL && e == NULL))
9862e9aa
RL
404 return 0;
405
1da12e34
RL
406 if (n != NULL) {
407 BN_free(r->n);
408 r->n = n;
409 }
410 if (e != NULL) {
411 BN_free(r->e);
412 r->e = e;
413 }
414 if (d != NULL) {
c033101d 415 BN_clear_free(r->d);
1da12e34 416 r->d = d;
311e903d 417 BN_set_flags(r->d, BN_FLG_CONSTTIME);
1da12e34 418 }
29be6023 419 r->dirty_cnt++;
9862e9aa
RL
420
421 return 1;
422}
423
424int RSA_set0_factors(RSA *r, BIGNUM *p, BIGNUM *q)
425{
fd809cfd 426 /* If the fields p and q in r are NULL, the corresponding input
1da12e34 427 * parameters MUST be non-NULL.
1da12e34 428 */
b84e1226
MC
429 if ((r->p == NULL && p == NULL)
430 || (r->q == NULL && q == NULL))
9862e9aa
RL
431 return 0;
432
1da12e34 433 if (p != NULL) {
c033101d 434 BN_clear_free(r->p);
1da12e34 435 r->p = p;
311e903d 436 BN_set_flags(r->p, BN_FLG_CONSTTIME);
1da12e34
RL
437 }
438 if (q != NULL) {
c033101d 439 BN_clear_free(r->q);
1da12e34 440 r->q = q;
311e903d 441 BN_set_flags(r->q, BN_FLG_CONSTTIME);
1da12e34 442 }
29be6023 443 r->dirty_cnt++;
9862e9aa
RL
444
445 return 1;
446}
447
448int RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp)
449{
fd809cfd 450 /* If the fields dmp1, dmq1 and iqmp in r are NULL, the corresponding input
1da12e34 451 * parameters MUST be non-NULL.
1da12e34 452 */
b84e1226
MC
453 if ((r->dmp1 == NULL && dmp1 == NULL)
454 || (r->dmq1 == NULL && dmq1 == NULL)
455 || (r->iqmp == NULL && iqmp == NULL))
9862e9aa
RL
456 return 0;
457
1da12e34 458 if (dmp1 != NULL) {
c033101d 459 BN_clear_free(r->dmp1);
1da12e34 460 r->dmp1 = dmp1;
311e903d 461 BN_set_flags(r->dmp1, BN_FLG_CONSTTIME);
1da12e34
RL
462 }
463 if (dmq1 != NULL) {
c033101d 464 BN_clear_free(r->dmq1);
1da12e34 465 r->dmq1 = dmq1;
311e903d 466 BN_set_flags(r->dmq1, BN_FLG_CONSTTIME);
1da12e34
RL
467 }
468 if (iqmp != NULL) {
c033101d 469 BN_clear_free(r->iqmp);
1da12e34 470 r->iqmp = iqmp;
311e903d 471 BN_set_flags(r->iqmp, BN_FLG_CONSTTIME);
1da12e34 472 }
29be6023 473 r->dirty_cnt++;
9862e9aa
RL
474
475 return 1;
476}
477
f844f9eb 478#ifndef FIPS_MODULE
665d899f
PY
479/*
480 * Is it better to export RSA_PRIME_INFO structure
481 * and related functions to let user pass a triplet?
482 */
483int RSA_set0_multi_prime_params(RSA *r, BIGNUM *primes[], BIGNUM *exps[],
484 BIGNUM *coeffs[], int pnum)
485{
486 STACK_OF(RSA_PRIME_INFO) *prime_infos, *old = NULL;
487 RSA_PRIME_INFO *pinfo;
488 int i;
489
490 if (primes == NULL || exps == NULL || coeffs == NULL || pnum == 0)
491 return 0;
492
493 prime_infos = sk_RSA_PRIME_INFO_new_reserve(NULL, pnum);
494 if (prime_infos == NULL)
495 return 0;
496
497 if (r->prime_infos != NULL)
498 old = r->prime_infos;
499
500 for (i = 0; i < pnum; i++) {
4158b0dc 501 pinfo = ossl_rsa_multip_info_new();
665d899f
PY
502 if (pinfo == NULL)
503 goto err;
504 if (primes[i] != NULL && exps[i] != NULL && coeffs[i] != NULL) {
d2baf88c
CPG
505 BN_clear_free(pinfo->r);
506 BN_clear_free(pinfo->d);
507 BN_clear_free(pinfo->t);
665d899f
PY
508 pinfo->r = primes[i];
509 pinfo->d = exps[i];
510 pinfo->t = coeffs[i];
d2baf88c
CPG
511 BN_set_flags(pinfo->r, BN_FLG_CONSTTIME);
512 BN_set_flags(pinfo->d, BN_FLG_CONSTTIME);
513 BN_set_flags(pinfo->t, BN_FLG_CONSTTIME);
665d899f 514 } else {
4158b0dc 515 ossl_rsa_multip_info_free(pinfo);
665d899f
PY
516 goto err;
517 }
518 (void)sk_RSA_PRIME_INFO_push(prime_infos, pinfo);
519 }
520
521 r->prime_infos = prime_infos;
522
4158b0dc 523 if (!ossl_rsa_multip_calc_product(r)) {
665d899f
PY
524 r->prime_infos = old;
525 goto err;
526 }
527
528 if (old != NULL) {
529 /*
530 * This is hard to deal with, since the old infos could
531 * also be set by this function and r, d, t should not
532 * be freed in that case. So currently, stay consistent
533 * with other *set0* functions: just free it...
534 */
4158b0dc 535 sk_RSA_PRIME_INFO_pop_free(old, ossl_rsa_multip_info_free);
665d899f
PY
536 }
537
538 r->version = RSA_ASN1_VERSION_MULTI;
29be6023 539 r->dirty_cnt++;
665d899f
PY
540
541 return 1;
542 err:
543 /* r, d, t should not be freed */
4158b0dc 544 sk_RSA_PRIME_INFO_pop_free(prime_infos, ossl_rsa_multip_info_free_ex);
665d899f
PY
545 return 0;
546}
afb638f1 547#endif
665d899f 548
fd809cfd
RL
549void RSA_get0_key(const RSA *r,
550 const BIGNUM **n, const BIGNUM **e, const BIGNUM **d)
9862e9aa
RL
551{
552 if (n != NULL)
553 *n = r->n;
554 if (e != NULL)
555 *e = r->e;
556 if (d != NULL)
557 *d = r->d;
558}
559
fd809cfd 560void RSA_get0_factors(const RSA *r, const BIGNUM **p, const BIGNUM **q)
9862e9aa
RL
561{
562 if (p != NULL)
563 *p = r->p;
564 if (q != NULL)
565 *q = r->q;
566}
567
f844f9eb 568#ifndef FIPS_MODULE
665d899f
PY
569int RSA_get_multi_prime_extra_count(const RSA *r)
570{
571 int pnum;
572
573 pnum = sk_RSA_PRIME_INFO_num(r->prime_infos);
574 if (pnum <= 0)
575 pnum = 0;
576 return pnum;
577}
578
579int RSA_get0_multi_prime_factors(const RSA *r, const BIGNUM *primes[])
580{
581 int pnum, i;
582 RSA_PRIME_INFO *pinfo;
583
584 if ((pnum = RSA_get_multi_prime_extra_count(r)) == 0)
585 return 0;
586
587 /*
588 * return other primes
589 * it's caller's responsibility to allocate oth_primes[pnum]
590 */
591 for (i = 0; i < pnum; i++) {
592 pinfo = sk_RSA_PRIME_INFO_value(r->prime_infos, i);
593 primes[i] = pinfo->r;
594 }
595
596 return 1;
597}
afb638f1 598#endif
665d899f 599
9862e9aa 600void RSA_get0_crt_params(const RSA *r,
fd809cfd
RL
601 const BIGNUM **dmp1, const BIGNUM **dmq1,
602 const BIGNUM **iqmp)
9862e9aa
RL
603{
604 if (dmp1 != NULL)
605 *dmp1 = r->dmp1;
606 if (dmq1 != NULL)
607 *dmq1 = r->dmq1;
608 if (iqmp != NULL)
609 *iqmp = r->iqmp;
610}
611
f844f9eb 612#ifndef FIPS_MODULE
665d899f
PY
613int RSA_get0_multi_prime_crt_params(const RSA *r, const BIGNUM *exps[],
614 const BIGNUM *coeffs[])
615{
616 int pnum;
617
618 if ((pnum = RSA_get_multi_prime_extra_count(r)) == 0)
619 return 0;
620
621 /* return other primes */
622 if (exps != NULL || coeffs != NULL) {
623 RSA_PRIME_INFO *pinfo;
624 int i;
625
626 /* it's the user's job to guarantee the buffer length */
627 for (i = 0; i < pnum; i++) {
628 pinfo = sk_RSA_PRIME_INFO_value(r->prime_infos, i);
629 if (exps != NULL)
630 exps[i] = pinfo->d;
631 if (coeffs != NULL)
632 coeffs[i] = pinfo->t;
633 }
634 }
635
636 return 1;
637}
afb638f1 638#endif
665d899f 639
6692ff77
DMSP
640const BIGNUM *RSA_get0_n(const RSA *r)
641{
642 return r->n;
643}
644
645const BIGNUM *RSA_get0_e(const RSA *r)
646{
647 return r->e;
648}
649
650const BIGNUM *RSA_get0_d(const RSA *r)
651{
652 return r->d;
653}
654
655const BIGNUM *RSA_get0_p(const RSA *r)
656{
657 return r->p;
658}
659
660const BIGNUM *RSA_get0_q(const RSA *r)
661{
662 return r->q;
663}
664
665const BIGNUM *RSA_get0_dmp1(const RSA *r)
666{
667 return r->dmp1;
668}
669
670const BIGNUM *RSA_get0_dmq1(const RSA *r)
671{
672 return r->dmq1;
673}
674
675const BIGNUM *RSA_get0_iqmp(const RSA *r)
676{
677 return r->iqmp;
678}
679
677add38
RL
680const RSA_PSS_PARAMS *RSA_get0_pss_params(const RSA *r)
681{
15671090
RL
682#ifdef FIPS_MODULE
683 return NULL;
684#else
677add38 685 return r->pss;
15671090
RL
686#endif
687}
688
cf333799
RL
689/* Internal */
690int ossl_rsa_set0_pss_params(RSA *r, RSA_PSS_PARAMS *pss)
691{
692#ifdef FIPS_MODULE
693 return 0;
694#else
695 RSA_PSS_PARAMS_free(r->pss);
696 r->pss = pss;
697 return 1;
698#endif
699}
700
15671090 701/* Internal */
23b2fc0b 702RSA_PSS_PARAMS_30 *ossl_rsa_get0_pss_params_30(RSA *r)
15671090
RL
703{
704 return &r->pss_params;
677add38
RL
705}
706
9862e9aa
RL
707void RSA_clear_flags(RSA *r, int flags)
708{
709 r->flags &= ~flags;
710}
711
712int RSA_test_flags(const RSA *r, int flags)
713{
714 return r->flags & flags;
715}
716
717void RSA_set_flags(RSA *r, int flags)
718{
719 r->flags |= flags;
720}
721
665d899f
PY
722int RSA_get_version(RSA *r)
723{
724 /* { two-prime(0), multi(1) } */
725 return r->version;
726}
727
f844f9eb 728#ifndef FIPS_MODULE
e0685d24 729ENGINE *RSA_get0_engine(const RSA *r)
9862e9aa
RL
730{
731 return r->engine;
732}
e5e04ee3
DSH
733
734int RSA_pkey_ctx_ctrl(EVP_PKEY_CTX *ctx, int optype, int cmd, int p1, void *p2)
735{
736 /* If key type not RSA or RSA-PSS return error */
737 if (ctx != NULL && ctx->pmeth != NULL
738 && ctx->pmeth->pkey_id != EVP_PKEY_RSA
739 && ctx->pmeth->pkey_id != EVP_PKEY_RSA_PSS)
740 return -1;
741 return EVP_PKEY_CTX_ctrl(ctx, -1, optype, cmd, p1, p2);
742}
afb638f1 743#endif
c3a4fa4c
RL
744
745DEFINE_STACK_OF(BIGNUM)
746
f3be5366
NH
747/*
748 * Note: This function deletes values from the parameter
749 * stack values as they are consumed and set in the RSA key.
750 */
751int ossl_rsa_set0_all_params(RSA *r, STACK_OF(BIGNUM) *primes,
752 STACK_OF(BIGNUM) *exps,
753 STACK_OF(BIGNUM) *coeffs)
c3a4fa4c 754{
f844f9eb 755#ifndef FIPS_MODULE
c3a4fa4c 756 STACK_OF(RSA_PRIME_INFO) *prime_infos, *old_infos = NULL;
afb638f1 757#endif
c3a4fa4c
RL
758 int pnum;
759
760 if (primes == NULL || exps == NULL || coeffs == NULL)
761 return 0;
762
763 pnum = sk_BIGNUM_num(primes);
f3be5366
NH
764
765 /* we need at least 2 primes */
2647726b 766 if (pnum < 2)
c3a4fa4c
RL
767 return 0;
768
769 if (!RSA_set0_factors(r, sk_BIGNUM_value(primes, 0),
2647726b 770 sk_BIGNUM_value(primes, 1)))
c3a4fa4c
RL
771 return 0;
772
f3be5366
NH
773 /*
774 * if we managed to set everything above, remove those elements from the
775 * stack
776 * Note, we do this after the above all to ensure that we have taken
777 * ownership of all the elements in the RSA key to avoid memory leaks
778 * we also use delete 0 here as we are grabbing items from the end of the
779 * stack rather than the start, otherwise we could use pop
780 */
781 sk_BIGNUM_delete(primes, 0);
782 sk_BIGNUM_delete(primes, 0);
783
2647726b
NH
784 if (pnum == sk_BIGNUM_num(exps)
785 && pnum == sk_BIGNUM_num(coeffs) + 1) {
786
787 if (!RSA_set0_crt_params(r, sk_BIGNUM_value(exps, 0),
788 sk_BIGNUM_value(exps, 1),
789 sk_BIGNUM_value(coeffs, 0)))
790 return 0;
f3be5366
NH
791
792 /* as above, once we consume the above params, delete them from the list */
793 sk_BIGNUM_delete(exps, 0);
794 sk_BIGNUM_delete(exps, 0);
795 sk_BIGNUM_delete(coeffs, 0);
2647726b
NH
796 }
797
f844f9eb 798#ifndef FIPS_MODULE
c3a4fa4c 799 old_infos = r->prime_infos;
afb638f1 800#endif
c3a4fa4c
RL
801
802 if (pnum > 2) {
f844f9eb 803#ifndef FIPS_MODULE
c3a4fa4c
RL
804 int i;
805
806 prime_infos = sk_RSA_PRIME_INFO_new_reserve(NULL, pnum);
807 if (prime_infos == NULL)
808 return 0;
809
810 for (i = 2; i < pnum; i++) {
f3be5366
NH
811 BIGNUM *prime = sk_BIGNUM_pop(primes);
812 BIGNUM *exp = sk_BIGNUM_pop(exps);
813 BIGNUM *coeff = sk_BIGNUM_pop(coeffs);
c3a4fa4c
RL
814 RSA_PRIME_INFO *pinfo = NULL;
815
816 if (!ossl_assert(prime != NULL && exp != NULL && coeff != NULL))
817 goto err;
818
4158b0dc 819 /* Using ossl_rsa_multip_info_new() is wasteful, so allocate directly */
e077455e 820 if ((pinfo = OPENSSL_zalloc(sizeof(*pinfo))) == NULL)
c3a4fa4c 821 goto err;
c3a4fa4c
RL
822
823 pinfo->r = prime;
824 pinfo->d = exp;
825 pinfo->t = coeff;
826 BN_set_flags(pinfo->r, BN_FLG_CONSTTIME);
827 BN_set_flags(pinfo->d, BN_FLG_CONSTTIME);
828 BN_set_flags(pinfo->t, BN_FLG_CONSTTIME);
829 (void)sk_RSA_PRIME_INFO_push(prime_infos, pinfo);
830 }
831
832 r->prime_infos = prime_infos;
833
4158b0dc 834 if (!ossl_rsa_multip_calc_product(r)) {
c3a4fa4c
RL
835 r->prime_infos = old_infos;
836 goto err;
837 }
afb638f1
MC
838#else
839 return 0;
840#endif
c3a4fa4c
RL
841 }
842
f844f9eb 843#ifndef FIPS_MODULE
c3a4fa4c
RL
844 if (old_infos != NULL) {
845 /*
846 * This is hard to deal with, since the old infos could
847 * also be set by this function and r, d, t should not
848 * be freed in that case. So currently, stay consistent
849 * with other *set0* functions: just free it...
850 */
4158b0dc 851 sk_RSA_PRIME_INFO_pop_free(old_infos, ossl_rsa_multip_info_free);
c3a4fa4c 852 }
afb638f1 853#endif
c3a4fa4c
RL
854
855 r->version = pnum > 2 ? RSA_ASN1_VERSION_MULTI : RSA_ASN1_VERSION_DEFAULT;
856 r->dirty_cnt++;
857
858 return 1;
f844f9eb 859#ifndef FIPS_MODULE
c3a4fa4c
RL
860 err:
861 /* r, d, t should not be freed */
4158b0dc 862 sk_RSA_PRIME_INFO_pop_free(prime_infos, ossl_rsa_multip_info_free_ex);
c3a4fa4c 863 return 0;
afb638f1 864#endif
c3a4fa4c
RL
865}
866
867DEFINE_SPECIAL_STACK_OF_CONST(BIGNUM_const, BIGNUM)
868
23b2fc0b
P
869int ossl_rsa_get0_all_params(RSA *r, STACK_OF(BIGNUM_const) *primes,
870 STACK_OF(BIGNUM_const) *exps,
871 STACK_OF(BIGNUM_const) *coeffs)
c3a4fa4c 872{
f844f9eb 873#ifndef FIPS_MODULE
c3a4fa4c
RL
874 RSA_PRIME_INFO *pinfo;
875 int i, pnum;
afb638f1 876#endif
c3a4fa4c
RL
877
878 if (r == NULL)
879 return 0;
880
a9127c1d
RL
881 /* If |p| is NULL, there are no CRT parameters */
882 if (RSA_get0_p(r) == NULL)
883 return 1;
884
c3a4fa4c
RL
885 sk_BIGNUM_const_push(primes, RSA_get0_p(r));
886 sk_BIGNUM_const_push(primes, RSA_get0_q(r));
887 sk_BIGNUM_const_push(exps, RSA_get0_dmp1(r));
888 sk_BIGNUM_const_push(exps, RSA_get0_dmq1(r));
889 sk_BIGNUM_const_push(coeffs, RSA_get0_iqmp(r));
afb638f1 890
f844f9eb 891#ifndef FIPS_MODULE
afb638f1 892 pnum = RSA_get_multi_prime_extra_count(r);
c3a4fa4c
RL
893 for (i = 0; i < pnum; i++) {
894 pinfo = sk_RSA_PRIME_INFO_value(r->prime_infos, i);
895 sk_BIGNUM_const_push(primes, pinfo->r);
896 sk_BIGNUM_const_push(exps, pinfo->d);
897 sk_BIGNUM_const_push(coeffs, pinfo->t);
898 }
afb638f1 899#endif
c3a4fa4c
RL
900
901 return 1;
902}
89abd1b6 903
f844f9eb 904#ifndef FIPS_MODULE
13f91a72
RL
905/* Helpers to set or get diverse hash algorithm names */
906static int int_set_rsa_md_name(EVP_PKEY_CTX *ctx,
907 /* For checks */
908 int keytype, int optype,
909 /* For EVP_PKEY_CTX_set_params() */
910 const char *mdkey, const char *mdname,
911 const char *propkey, const char *mdprops)
89abd1b6 912{
13f91a72 913 OSSL_PARAM params[3], *p = params;
89abd1b6 914
13f91a72 915 if (ctx == NULL || mdname == NULL || (ctx->operation & optype) == 0) {
89abd1b6
MC
916 ERR_raise(ERR_LIB_EVP, EVP_R_COMMAND_NOT_SUPPORTED);
917 /* Uses the same return values as EVP_PKEY_CTX_ctrl */
918 return -2;
919 }
920
13f91a72
RL
921 /* If key type not RSA return error */
922 switch (keytype) {
923 case -1:
924 if (!EVP_PKEY_CTX_is_a(ctx, "RSA")
925 && !EVP_PKEY_CTX_is_a(ctx, "RSA-PSS"))
926 return -1;
927 break;
928 default:
929 if (!EVP_PKEY_CTX_is_a(ctx, evp_pkey_type2name(keytype)))
930 return -1;
931 break;
932 }
89abd1b6 933
13f91a72
RL
934 /* Cast away the const. This is read only so should be safe */
935 *p++ = OSSL_PARAM_construct_utf8_string(mdkey, (char *)mdname, 0);
936 if (evp_pkey_ctx_is_provided(ctx) && mdprops != NULL) {
937 /* Cast away the const. This is read only so should be safe */
938 *p++ = OSSL_PARAM_construct_utf8_string(propkey, (char *)mdprops, 0);
939 }
89abd1b6
MC
940 *p++ = OSSL_PARAM_construct_end();
941
13f91a72 942 return evp_pkey_ctx_set_params_strict(ctx, params);
89abd1b6
MC
943}
944
13f91a72
RL
945/* Helpers to set or get diverse hash algorithm names */
946static int int_get_rsa_md_name(EVP_PKEY_CTX *ctx,
947 /* For checks */
948 int keytype, int optype,
949 /* For EVP_PKEY_CTX_get_params() */
950 const char *mdkey,
951 char *mdname, size_t mdnamesize)
89abd1b6 952{
13f91a72 953 OSSL_PARAM params[2], *p = params;
89abd1b6 954
13f91a72 955 if (ctx == NULL || mdname == NULL || (ctx->operation & optype) == 0) {
89abd1b6
MC
956 ERR_raise(ERR_LIB_EVP, EVP_R_COMMAND_NOT_SUPPORTED);
957 /* Uses the same return values as EVP_PKEY_CTX_ctrl */
958 return -2;
959 }
960
13f91a72
RL
961 /* If key type not RSA return error */
962 switch (keytype) {
963 case -1:
964 if (!EVP_PKEY_CTX_is_a(ctx, "RSA")
965 && !EVP_PKEY_CTX_is_a(ctx, "RSA-PSS"))
966 return -1;
967 break;
968 default:
969 if (!EVP_PKEY_CTX_is_a(ctx, evp_pkey_type2name(keytype)))
970 return -1;
971 break;
972 }
89abd1b6 973
13f91a72
RL
974 /* Cast away the const. This is read only so should be safe */
975 *p++ = OSSL_PARAM_construct_utf8_string(mdkey, (char *)mdname, mdnamesize);
89abd1b6
MC
976 *p++ = OSSL_PARAM_construct_end();
977
13f91a72
RL
978 return evp_pkey_ctx_get_params_strict(ctx, params);
979}
89abd1b6 980
13f91a72
RL
981/*
982 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper,
983 * simply because that's easier.
13f91a72
RL
984 */
985int EVP_PKEY_CTX_set_rsa_padding(EVP_PKEY_CTX *ctx, int pad_mode)
986{
987 return RSA_pkey_ctx_ctrl(ctx, -1, EVP_PKEY_CTRL_RSA_PADDING,
988 pad_mode, NULL);
989}
89abd1b6 990
13f91a72
RL
991/*
992 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper,
993 * simply because that's easier.
13f91a72
RL
994 */
995int EVP_PKEY_CTX_get_rsa_padding(EVP_PKEY_CTX *ctx, int *pad_mode)
996{
997 return RSA_pkey_ctx_ctrl(ctx, -1, EVP_PKEY_CTRL_GET_RSA_PADDING,
998 0, pad_mode);
89abd1b6
MC
999}
1000
13f91a72
RL
1001/*
1002 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper,
1003 * simply because that's easier.
13f91a72 1004 */
e947a064
DB
1005int EVP_PKEY_CTX_set_rsa_pss_keygen_md(EVP_PKEY_CTX *ctx, const EVP_MD *md)
1006{
13f91a72
RL
1007 return EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA_PSS, EVP_PKEY_OP_KEYGEN,
1008 EVP_PKEY_CTRL_MD, 0, (void *)(md));
e947a064
DB
1009}
1010
1011int EVP_PKEY_CTX_set_rsa_pss_keygen_md_name(EVP_PKEY_CTX *ctx,
1012 const char *mdname,
1013 const char *mdprops)
1014{
13f91a72
RL
1015 return int_set_rsa_md_name(ctx, EVP_PKEY_RSA_PSS, EVP_PKEY_OP_KEYGEN,
1016 OSSL_PKEY_PARAM_RSA_DIGEST, mdname,
1017 OSSL_PKEY_PARAM_RSA_DIGEST_PROPS, mdprops);
e947a064
DB
1018}
1019
13f91a72
RL
1020/*
1021 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper,
1022 * simply because that's easier.
13f91a72 1023 */
89abd1b6
MC
1024int EVP_PKEY_CTX_set_rsa_oaep_md(EVP_PKEY_CTX *ctx, const EVP_MD *md)
1025{
0c3eb31b 1026 /* If key type not RSA return error */
1027 if (!EVP_PKEY_CTX_is_a(ctx, "RSA"))
1028 return -1;
1029
13f91a72
RL
1030 return EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_TYPE_CRYPT,
1031 EVP_PKEY_CTRL_RSA_OAEP_MD, 0, (void *)(md));
89abd1b6
MC
1032}
1033
1034int EVP_PKEY_CTX_set_rsa_oaep_md_name(EVP_PKEY_CTX *ctx, const char *mdname,
1035 const char *mdprops)
1036{
13f91a72
RL
1037 return
1038 int_set_rsa_md_name(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_TYPE_CRYPT,
1039 OSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST, mdname,
1040 OSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST_PROPS, mdprops);
89abd1b6
MC
1041}
1042
1043int EVP_PKEY_CTX_get_rsa_oaep_md_name(EVP_PKEY_CTX *ctx, char *name,
13f91a72 1044 size_t namesize)
89abd1b6 1045{
13f91a72
RL
1046 return int_get_rsa_md_name(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_TYPE_CRYPT,
1047 OSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST,
1048 name, namesize);
89abd1b6
MC
1049}
1050
13f91a72
RL
1051/*
1052 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper,
1053 * simply because that's easier.
13f91a72 1054 */
89abd1b6
MC
1055int EVP_PKEY_CTX_get_rsa_oaep_md(EVP_PKEY_CTX *ctx, const EVP_MD **md)
1056{
0c3eb31b 1057 /* If key type not RSA return error */
1058 if (!EVP_PKEY_CTX_is_a(ctx, "RSA"))
1059 return -1;
1060
13f91a72
RL
1061 return EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_TYPE_CRYPT,
1062 EVP_PKEY_CTRL_GET_RSA_OAEP_MD, 0, (void *)md);
89abd1b6
MC
1063}
1064
13f91a72
RL
1065/*
1066 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper,
1067 * simply because that's easier.
13f91a72
RL
1068 */
1069int EVP_PKEY_CTX_set_rsa_mgf1_md(EVP_PKEY_CTX *ctx, const EVP_MD *md)
89abd1b6 1070{
13f91a72
RL
1071 return RSA_pkey_ctx_ctrl(ctx, EVP_PKEY_OP_TYPE_SIG | EVP_PKEY_OP_TYPE_CRYPT,
1072 EVP_PKEY_CTRL_RSA_MGF1_MD, 0, (void *)(md));
89abd1b6
MC
1073}
1074
13f91a72
RL
1075int EVP_PKEY_CTX_set_rsa_mgf1_md_name(EVP_PKEY_CTX *ctx, const char *mdname,
1076 const char *mdprops)
e25761b1 1077{
13f91a72 1078 return int_set_rsa_md_name(ctx, -1,
e25761b1 1079 EVP_PKEY_OP_TYPE_CRYPT | EVP_PKEY_OP_TYPE_SIG,
13f91a72
RL
1080 OSSL_PKEY_PARAM_MGF1_DIGEST, mdname,
1081 OSSL_PKEY_PARAM_MGF1_PROPERTIES, mdprops);
e25761b1
RL
1082}
1083
13f91a72
RL
1084int EVP_PKEY_CTX_get_rsa_mgf1_md_name(EVP_PKEY_CTX *ctx, char *name,
1085 size_t namesize)
e25761b1 1086{
13f91a72 1087 return int_get_rsa_md_name(ctx, -1,
e25761b1 1088 EVP_PKEY_OP_TYPE_CRYPT | EVP_PKEY_OP_TYPE_SIG,
13f91a72 1089 OSSL_PKEY_PARAM_MGF1_DIGEST, name, namesize);
e25761b1
RL
1090}
1091
13f91a72
RL
1092/*
1093 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper,
1094 * simply because that's easier.
13f91a72 1095 */
e25761b1
RL
1096int EVP_PKEY_CTX_set_rsa_pss_keygen_mgf1_md(EVP_PKEY_CTX *ctx, const EVP_MD *md)
1097{
13f91a72
RL
1098 return EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA_PSS, EVP_PKEY_OP_KEYGEN,
1099 EVP_PKEY_CTRL_RSA_MGF1_MD, 0, (void *)(md));
e25761b1
RL
1100}
1101
1102int EVP_PKEY_CTX_set_rsa_pss_keygen_mgf1_md_name(EVP_PKEY_CTX *ctx,
1103 const char *mdname)
1104{
13f91a72
RL
1105 return int_set_rsa_md_name(ctx, EVP_PKEY_RSA_PSS, EVP_PKEY_OP_KEYGEN,
1106 OSSL_PKEY_PARAM_MGF1_DIGEST, mdname,
1107 NULL, NULL);
89abd1b6
MC
1108}
1109
13f91a72
RL
1110/*
1111 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper,
1112 * simply because that's easier.
13f91a72 1113 */
89abd1b6
MC
1114int EVP_PKEY_CTX_get_rsa_mgf1_md(EVP_PKEY_CTX *ctx, const EVP_MD **md)
1115{
13f91a72
RL
1116 return RSA_pkey_ctx_ctrl(ctx, EVP_PKEY_OP_TYPE_SIG | EVP_PKEY_OP_TYPE_CRYPT,
1117 EVP_PKEY_CTRL_GET_RSA_MGF1_MD, 0, (void *)(md));
89abd1b6
MC
1118}
1119
1120int EVP_PKEY_CTX_set0_rsa_oaep_label(EVP_PKEY_CTX *ctx, void *label, int llen)
1121{
1122 OSSL_PARAM rsa_params[2], *p = rsa_params;
21b98da9
DU
1123 const char *empty = "";
1124 /*
1125 * Needed as we swap label with empty if it is NULL, and label is
1126 * freed at the end of this function.
1127 */
1128 void *plabel = label;
00d5193b 1129 int ret;
89abd1b6
MC
1130
1131 if (ctx == NULL || !EVP_PKEY_CTX_IS_ASYM_CIPHER_OP(ctx)) {
1132 ERR_raise(ERR_LIB_EVP, EVP_R_COMMAND_NOT_SUPPORTED);
1133 /* Uses the same return values as EVP_PKEY_CTX_ctrl */
1134 return -2;
1135 }
1136
1137 /* If key type not RSA return error */
13f91a72 1138 if (!EVP_PKEY_CTX_is_a(ctx, "RSA"))
89abd1b6
MC
1139 return -1;
1140
21b98da9
DU
1141 /* Accept NULL for backward compatibility */
1142 if (label == NULL && llen == 0)
1143 plabel = (void *)empty;
1144
13f91a72 1145 /* Cast away the const. This is read only so should be safe */
89abd1b6 1146 *p++ = OSSL_PARAM_construct_octet_string(OSSL_ASYM_CIPHER_PARAM_OAEP_LABEL,
21b98da9 1147 (void *)plabel, (size_t)llen);
89abd1b6
MC
1148 *p++ = OSSL_PARAM_construct_end();
1149
00d5193b
PH
1150 ret = evp_pkey_ctx_set_params_strict(ctx, rsa_params);
1151 if (ret <= 0)
1152 return ret;
89abd1b6 1153
e304aa87 1154 /* Ownership is supposed to be transferred to the callee. */
89abd1b6
MC
1155 OPENSSL_free(label);
1156 return 1;
1157}
1158
1159int EVP_PKEY_CTX_get0_rsa_oaep_label(EVP_PKEY_CTX *ctx, unsigned char **label)
1160{
ba0a6d1d 1161 OSSL_PARAM rsa_params[2], *p = rsa_params;
89abd1b6
MC
1162 size_t labellen;
1163
1164 if (ctx == NULL || !EVP_PKEY_CTX_IS_ASYM_CIPHER_OP(ctx)) {
1165 ERR_raise(ERR_LIB_EVP, EVP_R_COMMAND_NOT_SUPPORTED);
1166 /* Uses the same return values as EVP_PKEY_CTX_ctrl */
1167 return -2;
1168 }
1169
1170 /* If key type not RSA return error */
13f91a72 1171 if (!EVP_PKEY_CTX_is_a(ctx, "RSA"))
89abd1b6
MC
1172 return -1;
1173
89abd1b6
MC
1174 *p++ = OSSL_PARAM_construct_octet_ptr(OSSL_ASYM_CIPHER_PARAM_OAEP_LABEL,
1175 (void **)label, 0);
89abd1b6
MC
1176 *p++ = OSSL_PARAM_construct_end();
1177
1178 if (!EVP_PKEY_CTX_get_params(ctx, rsa_params))
1179 return -1;
1180
ba0a6d1d 1181 labellen = rsa_params[0].return_size;
89abd1b6
MC
1182 if (labellen > INT_MAX)
1183 return -1;
1184
1185 return (int)labellen;
1186}
6f4b7663 1187
13f91a72
RL
1188/*
1189 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper,
1190 * simply because that's easier.
1191 */
e25761b1
RL
1192int EVP_PKEY_CTX_set_rsa_pss_saltlen(EVP_PKEY_CTX *ctx, int saltlen)
1193{
13f91a72
RL
1194 /*
1195 * For some reason, the optype was set to this:
1196 *
1197 * EVP_PKEY_OP_SIGN|EVP_PKEY_OP_VERIFY
1198 *
1199 * However, we do use RSA-PSS with the whole gamut of diverse signature
1200 * and verification operations, so the optype gets upgraded to this:
1201 *
1202 * EVP_PKEY_OP_TYPE_SIG
1203 */
1204 return RSA_pkey_ctx_ctrl(ctx, EVP_PKEY_OP_TYPE_SIG,
1205 EVP_PKEY_CTRL_RSA_PSS_SALTLEN, saltlen, NULL);
e25761b1
RL
1206}
1207
13f91a72
RL
1208/*
1209 * This one is currently implemented as an EVP_PKEY_CTX_ctrl() wrapper,
1210 * simply because that's easier.
1211 */
1212int EVP_PKEY_CTX_get_rsa_pss_saltlen(EVP_PKEY_CTX *ctx, int *saltlen)
e25761b1 1213{
13f91a72
RL
1214 /*
1215 * Because of circumstances, the optype is updated from:
1216 *
1217 * EVP_PKEY_OP_SIGN|EVP_PKEY_OP_VERIFY
1218 *
1219 * to:
1220 *
1221 * EVP_PKEY_OP_TYPE_SIG
1222 */
1223 return RSA_pkey_ctx_ctrl(ctx, EVP_PKEY_OP_TYPE_SIG,
1224 EVP_PKEY_CTRL_GET_RSA_PSS_SALTLEN, 0, saltlen);
e25761b1
RL
1225}
1226
13f91a72 1227int EVP_PKEY_CTX_set_rsa_pss_keygen_saltlen(EVP_PKEY_CTX *ctx, int saltlen)
6f4b7663
RL
1228{
1229 OSSL_PARAM pad_params[2], *p = pad_params;
1230
13f91a72 1231 if (ctx == NULL || !EVP_PKEY_CTX_IS_GEN_OP(ctx)) {
6f4b7663
RL
1232 ERR_raise(ERR_LIB_EVP, EVP_R_COMMAND_NOT_SUPPORTED);
1233 /* Uses the same return values as EVP_PKEY_CTX_ctrl */
1234 return -2;
1235 }
1236
13f91a72 1237 if (!EVP_PKEY_CTX_is_a(ctx, "RSA-PSS"))
6f4b7663
RL
1238 return -1;
1239
13f91a72
RL
1240 *p++ = OSSL_PARAM_construct_int(OSSL_SIGNATURE_PARAM_PSS_SALTLEN,
1241 &saltlen);
6f4b7663
RL
1242 *p++ = OSSL_PARAM_construct_end();
1243
13f91a72 1244 return evp_pkey_ctx_set_params_strict(ctx, pad_params);
6f4b7663 1245}
2972af10
RL
1246
1247int EVP_PKEY_CTX_set_rsa_keygen_bits(EVP_PKEY_CTX *ctx, int bits)
1248{
1249 OSSL_PARAM params[2], *p = params;
1250 size_t bits2 = bits;
1251
1252 if (ctx == NULL || !EVP_PKEY_CTX_IS_GEN_OP(ctx)) {
1253 ERR_raise(ERR_LIB_EVP, EVP_R_COMMAND_NOT_SUPPORTED);
1254 /* Uses the same return values as EVP_PKEY_CTX_ctrl */
1255 return -2;
1256 }
1257
1258 /* If key type not RSA return error */
13f91a72
RL
1259 if (!EVP_PKEY_CTX_is_a(ctx, "RSA")
1260 && !EVP_PKEY_CTX_is_a(ctx, "RSA-PSS"))
2972af10
RL
1261 return -1;
1262
2972af10
RL
1263 *p++ = OSSL_PARAM_construct_size_t(OSSL_PKEY_PARAM_RSA_BITS, &bits2);
1264 *p++ = OSSL_PARAM_construct_end();
1265
13f91a72 1266 return evp_pkey_ctx_set_params_strict(ctx, params);
2972af10
RL
1267}
1268
13f91a72 1269int EVP_PKEY_CTX_set_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx, BIGNUM *pubexp)
2972af10 1270{
13f91a72 1271 int ret = RSA_pkey_ctx_ctrl(ctx, EVP_PKEY_OP_KEYGEN,
3786d748 1272 EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP, 0, pubexp);
3786d748 1273
1274 /*
1275 * Satisfy memory semantics for pre-3.0 callers of
1276 * EVP_PKEY_CTX_set_rsa_keygen_pubexp(): their expectation is that input
1277 * pubexp BIGNUM becomes managed by the EVP_PKEY_CTX on success.
1278 */
13f91a72
RL
1279 if (ret > 0 && evp_pkey_ctx_is_provided(ctx)) {
1280 BN_free(ctx->rsa_pubexp);
3786d748 1281 ctx->rsa_pubexp = pubexp;
13f91a72 1282 }
3786d748 1283
2972af10
RL
1284 return ret;
1285}
1286
3786d748 1287int EVP_PKEY_CTX_set1_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx, BIGNUM *pubexp)
1288{
13f91a72
RL
1289 int ret = 0;
1290
1291 /*
1292 * When we're dealing with a provider, there's no need to duplicate
1293 * pubexp, as it gets copied when transforming to an OSSL_PARAM anyway.
1294 */
9d1a2705 1295 if (evp_pkey_ctx_is_legacy(ctx)) {
13f91a72 1296 pubexp = BN_dup(pubexp);
9d1a2705 1297 if (pubexp == NULL)
1298 return 0;
1299 }
13f91a72
RL
1300 ret = EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_KEYGEN,
1301 EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP, 0, pubexp);
1302 if (evp_pkey_ctx_is_legacy(ctx) && ret <= 0)
1303 BN_free(pubexp);
1304 return ret;
3786d748 1305}
1306
2972af10
RL
1307int EVP_PKEY_CTX_set_rsa_keygen_primes(EVP_PKEY_CTX *ctx, int primes)
1308{
1309 OSSL_PARAM params[2], *p = params;
1310 size_t primes2 = primes;
1311
1312 if (ctx == NULL || !EVP_PKEY_CTX_IS_GEN_OP(ctx)) {
1313 ERR_raise(ERR_LIB_EVP, EVP_R_COMMAND_NOT_SUPPORTED);
1314 /* Uses the same return values as EVP_PKEY_CTX_ctrl */
1315 return -2;
1316 }
1317
1318 /* If key type not RSA return error */
13f91a72
RL
1319 if (!EVP_PKEY_CTX_is_a(ctx, "RSA")
1320 && !EVP_PKEY_CTX_is_a(ctx, "RSA-PSS"))
2972af10
RL
1321 return -1;
1322
2972af10
RL
1323 *p++ = OSSL_PARAM_construct_size_t(OSSL_PKEY_PARAM_RSA_PRIMES, &primes2);
1324 *p++ = OSSL_PARAM_construct_end();
1325
13f91a72 1326 return evp_pkey_ctx_set_params_strict(ctx, params);
2972af10 1327}
afb638f1 1328#endif