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