Coverage Report

Created: 2025-11-09 07:03

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/irssi/subprojects/openssl-1.1.1l/crypto/rsa/rsa_ameth.c
Line
Count
Source
1
/*
2
 * Copyright 2006-2020 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the OpenSSL license (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
#include <stdio.h>
11
#include "internal/cryptlib.h"
12
#include <openssl/asn1t.h>
13
#include <openssl/x509.h>
14
#include <openssl/bn.h>
15
#include <openssl/cms.h>
16
#include "crypto/asn1.h"
17
#include "crypto/evp.h"
18
#include "rsa_local.h"
19
20
#ifndef OPENSSL_NO_CMS
21
static int rsa_cms_sign(CMS_SignerInfo *si);
22
static int rsa_cms_verify(CMS_SignerInfo *si);
23
static int rsa_cms_decrypt(CMS_RecipientInfo *ri);
24
static int rsa_cms_encrypt(CMS_RecipientInfo *ri);
25
#endif
26
27
static RSA_PSS_PARAMS *rsa_pss_decode(const X509_ALGOR *alg);
28
29
/* Set any parameters associated with pkey */
30
static int rsa_param_encode(const EVP_PKEY *pkey,
31
                            ASN1_STRING **pstr, int *pstrtype)
32
0
{
33
0
    const RSA *rsa = pkey->pkey.rsa;
34
35
0
    *pstr = NULL;
36
    /* If RSA it's just NULL type */
37
0
    if (pkey->ameth->pkey_id != EVP_PKEY_RSA_PSS) {
38
0
        *pstrtype = V_ASN1_NULL;
39
0
        return 1;
40
0
    }
41
    /* If no PSS parameters we omit parameters entirely */
42
0
    if (rsa->pss == NULL) {
43
0
        *pstrtype = V_ASN1_UNDEF;
44
0
        return 1;
45
0
    }
46
    /* Encode PSS parameters */
47
0
    if (ASN1_item_pack(rsa->pss, ASN1_ITEM_rptr(RSA_PSS_PARAMS), pstr) == NULL)
48
0
        return 0;
49
50
0
    *pstrtype = V_ASN1_SEQUENCE;
51
0
    return 1;
52
0
}
53
/* Decode any parameters and set them in RSA structure */
54
static int rsa_param_decode(RSA *rsa, const X509_ALGOR *alg)
55
0
{
56
0
    const ASN1_OBJECT *algoid;
57
0
    const void *algp;
58
0
    int algptype;
59
60
0
    X509_ALGOR_get0(&algoid, &algptype, &algp, alg);
61
0
    if (OBJ_obj2nid(algoid) != EVP_PKEY_RSA_PSS)
62
0
        return 1;
63
0
    if (algptype == V_ASN1_UNDEF)
64
0
        return 1;
65
0
    if (algptype != V_ASN1_SEQUENCE) {
66
0
        RSAerr(RSA_F_RSA_PARAM_DECODE, RSA_R_INVALID_PSS_PARAMETERS);
67
0
        return 0;
68
0
    }
69
0
    rsa->pss = rsa_pss_decode(alg);
70
0
    if (rsa->pss == NULL)
71
0
        return 0;
72
0
    return 1;
73
0
}
74
75
static int rsa_pub_encode(X509_PUBKEY *pk, const EVP_PKEY *pkey)
76
0
{
77
0
    unsigned char *penc = NULL;
78
0
    int penclen;
79
0
    ASN1_STRING *str;
80
0
    int strtype;
81
82
0
    if (!rsa_param_encode(pkey, &str, &strtype))
83
0
        return 0;
84
0
    penclen = i2d_RSAPublicKey(pkey->pkey.rsa, &penc);
85
0
    if (penclen <= 0)
86
0
        return 0;
87
0
    if (X509_PUBKEY_set0_param(pk, OBJ_nid2obj(pkey->ameth->pkey_id),
88
0
                               strtype, str, penc, penclen))
89
0
        return 1;
90
91
0
    OPENSSL_free(penc);
92
0
    return 0;
93
0
}
94
95
static int rsa_pub_decode(EVP_PKEY *pkey, X509_PUBKEY *pubkey)
96
0
{
97
0
    const unsigned char *p;
98
0
    int pklen;
99
0
    X509_ALGOR *alg;
100
0
    RSA *rsa = NULL;
101
102
0
    if (!X509_PUBKEY_get0_param(NULL, &p, &pklen, &alg, pubkey))
103
0
        return 0;
104
0
    if ((rsa = d2i_RSAPublicKey(NULL, &p, pklen)) == NULL) {
105
0
        RSAerr(RSA_F_RSA_PUB_DECODE, ERR_R_RSA_LIB);
106
0
        return 0;
107
0
    }
108
0
    if (!rsa_param_decode(rsa, alg)) {
109
0
        RSA_free(rsa);
110
0
        return 0;
111
0
    }
112
0
    if (!EVP_PKEY_assign(pkey, pkey->ameth->pkey_id, rsa)) {
113
0
        RSA_free(rsa);
114
0
        return 0;
115
0
    }
116
0
    return 1;
117
0
}
118
119
static int rsa_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
120
0
{
121
    /*
122
     * Don't check the public/private key, this is mostly for smart
123
     * cards.
124
     */
125
0
    if (((RSA_flags(a->pkey.rsa) & RSA_METHOD_FLAG_NO_CHECK))
126
0
            || (RSA_flags(b->pkey.rsa) & RSA_METHOD_FLAG_NO_CHECK)) {
127
0
        return 1;
128
0
    }
129
130
0
    if (BN_cmp(b->pkey.rsa->n, a->pkey.rsa->n) != 0
131
0
        || BN_cmp(b->pkey.rsa->e, a->pkey.rsa->e) != 0)
132
0
        return 0;
133
0
    return 1;
134
0
}
135
136
static int old_rsa_priv_decode(EVP_PKEY *pkey,
137
                               const unsigned char **pder, int derlen)
138
0
{
139
0
    RSA *rsa;
140
141
0
    if ((rsa = d2i_RSAPrivateKey(NULL, pder, derlen)) == NULL) {
142
0
        RSAerr(RSA_F_OLD_RSA_PRIV_DECODE, ERR_R_RSA_LIB);
143
0
        return 0;
144
0
    }
145
0
    EVP_PKEY_assign(pkey, pkey->ameth->pkey_id, rsa);
146
0
    return 1;
147
0
}
148
149
static int old_rsa_priv_encode(const EVP_PKEY *pkey, unsigned char **pder)
150
0
{
151
0
    return i2d_RSAPrivateKey(pkey->pkey.rsa, pder);
152
0
}
153
154
static int rsa_priv_encode(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pkey)
155
0
{
156
0
    unsigned char *rk = NULL;
157
0
    int rklen;
158
0
    ASN1_STRING *str;
159
0
    int strtype;
160
161
0
    if (!rsa_param_encode(pkey, &str, &strtype))
162
0
        return 0;
163
0
    rklen = i2d_RSAPrivateKey(pkey->pkey.rsa, &rk);
164
165
0
    if (rklen <= 0) {
166
0
        RSAerr(RSA_F_RSA_PRIV_ENCODE, ERR_R_MALLOC_FAILURE);
167
0
        ASN1_STRING_free(str);
168
0
        return 0;
169
0
    }
170
171
0
    if (!PKCS8_pkey_set0(p8, OBJ_nid2obj(pkey->ameth->pkey_id), 0,
172
0
                         strtype, str, rk, rklen)) {
173
0
        RSAerr(RSA_F_RSA_PRIV_ENCODE, ERR_R_MALLOC_FAILURE);
174
0
        ASN1_STRING_free(str);
175
0
        return 0;
176
0
    }
177
178
0
    return 1;
179
0
}
180
181
static int rsa_priv_decode(EVP_PKEY *pkey, const PKCS8_PRIV_KEY_INFO *p8)
182
0
{
183
0
    const unsigned char *p;
184
0
    RSA *rsa;
185
0
    int pklen;
186
0
    const X509_ALGOR *alg;
187
188
0
    if (!PKCS8_pkey_get0(NULL, &p, &pklen, &alg, p8))
189
0
        return 0;
190
0
    rsa = d2i_RSAPrivateKey(NULL, &p, pklen);
191
0
    if (rsa == NULL) {
192
0
        RSAerr(RSA_F_RSA_PRIV_DECODE, ERR_R_RSA_LIB);
193
0
        return 0;
194
0
    }
195
0
    if (!rsa_param_decode(rsa, alg)) {
196
0
        RSA_free(rsa);
197
0
        return 0;
198
0
    }
199
0
    EVP_PKEY_assign(pkey, pkey->ameth->pkey_id, rsa);
200
0
    return 1;
201
0
}
202
203
static int int_rsa_size(const EVP_PKEY *pkey)
204
0
{
205
0
    return RSA_size(pkey->pkey.rsa);
206
0
}
207
208
static int rsa_bits(const EVP_PKEY *pkey)
209
0
{
210
0
    return BN_num_bits(pkey->pkey.rsa->n);
211
0
}
212
213
static int rsa_security_bits(const EVP_PKEY *pkey)
214
0
{
215
0
    return RSA_security_bits(pkey->pkey.rsa);
216
0
}
217
218
static void int_rsa_free(EVP_PKEY *pkey)
219
0
{
220
0
    RSA_free(pkey->pkey.rsa);
221
0
}
222
223
static X509_ALGOR *rsa_mgf1_decode(X509_ALGOR *alg)
224
0
{
225
0
    if (OBJ_obj2nid(alg->algorithm) != NID_mgf1)
226
0
        return NULL;
227
0
    return ASN1_TYPE_unpack_sequence(ASN1_ITEM_rptr(X509_ALGOR),
228
0
                                     alg->parameter);
229
0
}
230
231
static int rsa_pss_param_print(BIO *bp, int pss_key, RSA_PSS_PARAMS *pss,
232
                               int indent)
233
0
{
234
0
    int rv = 0;
235
0
    X509_ALGOR *maskHash = NULL;
236
237
0
    if (!BIO_indent(bp, indent, 128))
238
0
        goto err;
239
0
    if (pss_key) {
240
0
        if (pss == NULL) {
241
0
            if (BIO_puts(bp, "No PSS parameter restrictions\n") <= 0)
242
0
                return 0;
243
0
            return 1;
244
0
        } else {
245
0
            if (BIO_puts(bp, "PSS parameter restrictions:") <= 0)
246
0
                return 0;
247
0
        }
248
0
    } else if (pss == NULL) {
249
0
        if (BIO_puts(bp,"(INVALID PSS PARAMETERS)\n") <= 0)
250
0
            return 0;
251
0
        return 1;
252
0
    }
253
0
    if (BIO_puts(bp, "\n") <= 0)
254
0
        goto err;
255
0
    if (pss_key)
256
0
        indent += 2;
257
0
    if (!BIO_indent(bp, indent, 128))
258
0
        goto err;
259
0
    if (BIO_puts(bp, "Hash Algorithm: ") <= 0)
260
0
        goto err;
261
262
0
    if (pss->hashAlgorithm) {
263
0
        if (i2a_ASN1_OBJECT(bp, pss->hashAlgorithm->algorithm) <= 0)
264
0
            goto err;
265
0
    } else if (BIO_puts(bp, "sha1 (default)") <= 0) {
266
0
        goto err;
267
0
    }
268
269
0
    if (BIO_puts(bp, "\n") <= 0)
270
0
        goto err;
271
272
0
    if (!BIO_indent(bp, indent, 128))
273
0
        goto err;
274
275
0
    if (BIO_puts(bp, "Mask Algorithm: ") <= 0)
276
0
        goto err;
277
0
    if (pss->maskGenAlgorithm) {
278
0
        if (i2a_ASN1_OBJECT(bp, pss->maskGenAlgorithm->algorithm) <= 0)
279
0
            goto err;
280
0
        if (BIO_puts(bp, " with ") <= 0)
281
0
            goto err;
282
0
        maskHash = rsa_mgf1_decode(pss->maskGenAlgorithm);
283
0
        if (maskHash != NULL) {
284
0
            if (i2a_ASN1_OBJECT(bp, maskHash->algorithm) <= 0)
285
0
                goto err;
286
0
        } else if (BIO_puts(bp, "INVALID") <= 0) {
287
0
            goto err;
288
0
        }
289
0
    } else if (BIO_puts(bp, "mgf1 with sha1 (default)") <= 0) {
290
0
        goto err;
291
0
    }
292
0
    BIO_puts(bp, "\n");
293
294
0
    if (!BIO_indent(bp, indent, 128))
295
0
        goto err;
296
0
    if (BIO_printf(bp, "%s Salt Length: 0x", pss_key ? "Minimum" : "") <= 0)
297
0
        goto err;
298
0
    if (pss->saltLength) {
299
0
        if (i2a_ASN1_INTEGER(bp, pss->saltLength) <= 0)
300
0
            goto err;
301
0
    } else if (BIO_puts(bp, "14 (default)") <= 0) {
302
0
        goto err;
303
0
    }
304
0
    BIO_puts(bp, "\n");
305
306
0
    if (!BIO_indent(bp, indent, 128))
307
0
        goto err;
308
0
    if (BIO_puts(bp, "Trailer Field: 0x") <= 0)
309
0
        goto err;
310
0
    if (pss->trailerField) {
311
0
        if (i2a_ASN1_INTEGER(bp, pss->trailerField) <= 0)
312
0
            goto err;
313
0
    } else if (BIO_puts(bp, "BC (default)") <= 0) {
314
0
        goto err;
315
0
    }
316
0
    BIO_puts(bp, "\n");
317
318
0
    rv = 1;
319
320
0
 err:
321
0
    X509_ALGOR_free(maskHash);
322
0
    return rv;
323
324
0
}
325
326
static int pkey_rsa_print(BIO *bp, const EVP_PKEY *pkey, int off, int priv)
327
0
{
328
0
    const RSA *x = pkey->pkey.rsa;
329
0
    char *str;
330
0
    const char *s;
331
0
    int ret = 0, mod_len = 0, ex_primes;
332
333
0
    if (x->n != NULL)
334
0
        mod_len = BN_num_bits(x->n);
335
0
    ex_primes = sk_RSA_PRIME_INFO_num(x->prime_infos);
336
337
0
    if (!BIO_indent(bp, off, 128))
338
0
        goto err;
339
340
0
    if (BIO_printf(bp, "%s ", pkey_is_pss(pkey) ?  "RSA-PSS" : "RSA") <= 0)
341
0
        goto err;
342
343
0
    if (priv && x->d) {
344
0
        if (BIO_printf(bp, "Private-Key: (%d bit, %d primes)\n",
345
0
                       mod_len, ex_primes <= 0 ? 2 : ex_primes + 2) <= 0)
346
0
            goto err;
347
0
        str = "modulus:";
348
0
        s = "publicExponent:";
349
0
    } else {
350
0
        if (BIO_printf(bp, "Public-Key: (%d bit)\n", mod_len) <= 0)
351
0
            goto err;
352
0
        str = "Modulus:";
353
0
        s = "Exponent:";
354
0
    }
355
0
    if (!ASN1_bn_print(bp, str, x->n, NULL, off))
356
0
        goto err;
357
0
    if (!ASN1_bn_print(bp, s, x->e, NULL, off))
358
0
        goto err;
359
0
    if (priv) {
360
0
        int i;
361
362
0
        if (!ASN1_bn_print(bp, "privateExponent:", x->d, NULL, off))
363
0
            goto err;
364
0
        if (!ASN1_bn_print(bp, "prime1:", x->p, NULL, off))
365
0
            goto err;
366
0
        if (!ASN1_bn_print(bp, "prime2:", x->q, NULL, off))
367
0
            goto err;
368
0
        if (!ASN1_bn_print(bp, "exponent1:", x->dmp1, NULL, off))
369
0
            goto err;
370
0
        if (!ASN1_bn_print(bp, "exponent2:", x->dmq1, NULL, off))
371
0
            goto err;
372
0
        if (!ASN1_bn_print(bp, "coefficient:", x->iqmp, NULL, off))
373
0
            goto err;
374
0
        for (i = 0; i < sk_RSA_PRIME_INFO_num(x->prime_infos); i++) {
375
            /* print multi-prime info */
376
0
            BIGNUM *bn = NULL;
377
0
            RSA_PRIME_INFO *pinfo;
378
0
            int j;
379
380
0
            pinfo = sk_RSA_PRIME_INFO_value(x->prime_infos, i);
381
0
            for (j = 0; j < 3; j++) {
382
0
                if (!BIO_indent(bp, off, 128))
383
0
                    goto err;
384
0
                switch (j) {
385
0
                case 0:
386
0
                    if (BIO_printf(bp, "prime%d:", i + 3) <= 0)
387
0
                        goto err;
388
0
                    bn = pinfo->r;
389
0
                    break;
390
0
                case 1:
391
0
                    if (BIO_printf(bp, "exponent%d:", i + 3) <= 0)
392
0
                        goto err;
393
0
                    bn = pinfo->d;
394
0
                    break;
395
0
                case 2:
396
0
                    if (BIO_printf(bp, "coefficient%d:", i + 3) <= 0)
397
0
                        goto err;
398
0
                    bn = pinfo->t;
399
0
                    break;
400
0
                default:
401
0
                    break;
402
0
                }
403
0
                if (!ASN1_bn_print(bp, "", bn, NULL, off))
404
0
                    goto err;
405
0
            }
406
0
        }
407
0
    }
408
0
    if (pkey_is_pss(pkey) && !rsa_pss_param_print(bp, 1, x->pss, off))
409
0
        goto err;
410
0
    ret = 1;
411
0
 err:
412
0
    return ret;
413
0
}
414
415
static int rsa_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent,
416
                         ASN1_PCTX *ctx)
417
0
{
418
0
    return pkey_rsa_print(bp, pkey, indent, 0);
419
0
}
420
421
static int rsa_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent,
422
                          ASN1_PCTX *ctx)
423
0
{
424
0
    return pkey_rsa_print(bp, pkey, indent, 1);
425
0
}
426
427
static RSA_PSS_PARAMS *rsa_pss_decode(const X509_ALGOR *alg)
428
0
{
429
0
    RSA_PSS_PARAMS *pss;
430
431
0
    pss = ASN1_TYPE_unpack_sequence(ASN1_ITEM_rptr(RSA_PSS_PARAMS),
432
0
                                    alg->parameter);
433
434
0
    if (pss == NULL)
435
0
        return NULL;
436
437
0
    if (pss->maskGenAlgorithm != NULL) {
438
0
        pss->maskHash = rsa_mgf1_decode(pss->maskGenAlgorithm);
439
0
        if (pss->maskHash == NULL) {
440
0
            RSA_PSS_PARAMS_free(pss);
441
0
            return NULL;
442
0
        }
443
0
    }
444
445
0
    return pss;
446
0
}
447
448
static int rsa_sig_print(BIO *bp, const X509_ALGOR *sigalg,
449
                         const ASN1_STRING *sig, int indent, ASN1_PCTX *pctx)
450
0
{
451
0
    if (OBJ_obj2nid(sigalg->algorithm) == EVP_PKEY_RSA_PSS) {
452
0
        int rv;
453
0
        RSA_PSS_PARAMS *pss = rsa_pss_decode(sigalg);
454
455
0
        rv = rsa_pss_param_print(bp, 0, pss, indent);
456
0
        RSA_PSS_PARAMS_free(pss);
457
0
        if (!rv)
458
0
            return 0;
459
0
    } else if (!sig && BIO_puts(bp, "\n") <= 0) {
460
0
        return 0;
461
0
    }
462
0
    if (sig)
463
0
        return X509_signature_dump(bp, sig, indent);
464
0
    return 1;
465
0
}
466
467
static int rsa_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2)
468
0
{
469
0
    X509_ALGOR *alg = NULL;
470
0
    const EVP_MD *md;
471
0
    const EVP_MD *mgf1md;
472
0
    int min_saltlen;
473
474
0
    switch (op) {
475
476
0
    case ASN1_PKEY_CTRL_PKCS7_SIGN:
477
0
        if (arg1 == 0)
478
0
            PKCS7_SIGNER_INFO_get0_algs(arg2, NULL, NULL, &alg);
479
0
        break;
480
481
0
    case ASN1_PKEY_CTRL_PKCS7_ENCRYPT:
482
0
        if (pkey_is_pss(pkey))
483
0
            return -2;
484
0
        if (arg1 == 0)
485
0
            PKCS7_RECIP_INFO_get0_alg(arg2, &alg);
486
0
        break;
487
0
#ifndef OPENSSL_NO_CMS
488
0
    case ASN1_PKEY_CTRL_CMS_SIGN:
489
0
        if (arg1 == 0)
490
0
            return rsa_cms_sign(arg2);
491
0
        else if (arg1 == 1)
492
0
            return rsa_cms_verify(arg2);
493
0
        break;
494
495
0
    case ASN1_PKEY_CTRL_CMS_ENVELOPE:
496
0
        if (pkey_is_pss(pkey))
497
0
            return -2;
498
0
        if (arg1 == 0)
499
0
            return rsa_cms_encrypt(arg2);
500
0
        else if (arg1 == 1)
501
0
            return rsa_cms_decrypt(arg2);
502
0
        break;
503
504
0
    case ASN1_PKEY_CTRL_CMS_RI_TYPE:
505
0
        if (pkey_is_pss(pkey))
506
0
            return -2;
507
0
        *(int *)arg2 = CMS_RECIPINFO_TRANS;
508
0
        return 1;
509
0
#endif
510
511
0
    case ASN1_PKEY_CTRL_DEFAULT_MD_NID:
512
0
        if (pkey->pkey.rsa->pss != NULL) {
513
0
            if (!rsa_pss_get_param(pkey->pkey.rsa->pss, &md, &mgf1md,
514
0
                                   &min_saltlen)) {
515
0
                RSAerr(0, ERR_R_INTERNAL_ERROR);
516
0
                return 0;
517
0
            }
518
0
            *(int *)arg2 = EVP_MD_type(md);
519
            /* Return of 2 indicates this MD is mandatory */
520
0
            return 2;
521
0
        }
522
0
        *(int *)arg2 = NID_sha256;
523
0
        return 1;
524
525
0
    default:
526
0
        return -2;
527
528
0
    }
529
530
0
    if (alg)
531
0
        X509_ALGOR_set0(alg, OBJ_nid2obj(NID_rsaEncryption), V_ASN1_NULL, 0);
532
533
0
    return 1;
534
535
0
}
536
537
/* allocate and set algorithm ID from EVP_MD, default SHA1 */
538
static int rsa_md_to_algor(X509_ALGOR **palg, const EVP_MD *md)
539
0
{
540
0
    if (md == NULL || EVP_MD_type(md) == NID_sha1)
541
0
        return 1;
542
0
    *palg = X509_ALGOR_new();
543
0
    if (*palg == NULL)
544
0
        return 0;
545
0
    X509_ALGOR_set_md(*palg, md);
546
0
    return 1;
547
0
}
548
549
/* Allocate and set MGF1 algorithm ID from EVP_MD */
550
static int rsa_md_to_mgf1(X509_ALGOR **palg, const EVP_MD *mgf1md)
551
0
{
552
0
    X509_ALGOR *algtmp = NULL;
553
0
    ASN1_STRING *stmp = NULL;
554
555
0
    *palg = NULL;
556
0
    if (mgf1md == NULL || EVP_MD_type(mgf1md) == NID_sha1)
557
0
        return 1;
558
    /* need to embed algorithm ID inside another */
559
0
    if (!rsa_md_to_algor(&algtmp, mgf1md))
560
0
        goto err;
561
0
    if (ASN1_item_pack(algtmp, ASN1_ITEM_rptr(X509_ALGOR), &stmp) == NULL)
562
0
         goto err;
563
0
    *palg = X509_ALGOR_new();
564
0
    if (*palg == NULL)
565
0
        goto err;
566
0
    X509_ALGOR_set0(*palg, OBJ_nid2obj(NID_mgf1), V_ASN1_SEQUENCE, stmp);
567
0
    stmp = NULL;
568
0
 err:
569
0
    ASN1_STRING_free(stmp);
570
0
    X509_ALGOR_free(algtmp);
571
0
    if (*palg)
572
0
        return 1;
573
0
    return 0;
574
0
}
575
576
/* convert algorithm ID to EVP_MD, default SHA1 */
577
static const EVP_MD *rsa_algor_to_md(X509_ALGOR *alg)
578
0
{
579
0
    const EVP_MD *md;
580
581
0
    if (!alg)
582
0
        return EVP_sha1();
583
0
    md = EVP_get_digestbyobj(alg->algorithm);
584
0
    if (md == NULL)
585
0
        RSAerr(RSA_F_RSA_ALGOR_TO_MD, RSA_R_UNKNOWN_DIGEST);
586
0
    return md;
587
0
}
588
589
/*
590
 * Convert EVP_PKEY_CTX in PSS mode into corresponding algorithm parameter,
591
 * suitable for setting an AlgorithmIdentifier.
592
 */
593
594
static RSA_PSS_PARAMS *rsa_ctx_to_pss(EVP_PKEY_CTX *pkctx)
595
0
{
596
0
    const EVP_MD *sigmd, *mgf1md;
597
0
    EVP_PKEY *pk = EVP_PKEY_CTX_get0_pkey(pkctx);
598
0
    int saltlen;
599
600
0
    if (EVP_PKEY_CTX_get_signature_md(pkctx, &sigmd) <= 0)
601
0
        return NULL;
602
0
    if (EVP_PKEY_CTX_get_rsa_mgf1_md(pkctx, &mgf1md) <= 0)
603
0
        return NULL;
604
0
    if (!EVP_PKEY_CTX_get_rsa_pss_saltlen(pkctx, &saltlen))
605
0
        return NULL;
606
0
    if (saltlen == -1) {
607
0
        saltlen = EVP_MD_size(sigmd);
608
0
    } else if (saltlen == -2 || saltlen == -3) {
609
0
        saltlen = EVP_PKEY_size(pk) - EVP_MD_size(sigmd) - 2;
610
0
        if ((EVP_PKEY_bits(pk) & 0x7) == 1)
611
0
            saltlen--;
612
0
        if (saltlen < 0)
613
0
            return NULL;
614
0
    }
615
616
0
    return rsa_pss_params_create(sigmd, mgf1md, saltlen);
617
0
}
618
619
RSA_PSS_PARAMS *rsa_pss_params_create(const EVP_MD *sigmd,
620
                                      const EVP_MD *mgf1md, int saltlen)
621
0
{
622
0
    RSA_PSS_PARAMS *pss = RSA_PSS_PARAMS_new();
623
624
0
    if (pss == NULL)
625
0
        goto err;
626
0
    if (saltlen != 20) {
627
0
        pss->saltLength = ASN1_INTEGER_new();
628
0
        if (pss->saltLength == NULL)
629
0
            goto err;
630
0
        if (!ASN1_INTEGER_set(pss->saltLength, saltlen))
631
0
            goto err;
632
0
    }
633
0
    if (!rsa_md_to_algor(&pss->hashAlgorithm, sigmd))
634
0
        goto err;
635
0
    if (mgf1md == NULL)
636
0
        mgf1md = sigmd;
637
0
    if (!rsa_md_to_mgf1(&pss->maskGenAlgorithm, mgf1md))
638
0
        goto err;
639
0
    if (!rsa_md_to_algor(&pss->maskHash, mgf1md))
640
0
        goto err;
641
0
    return pss;
642
0
 err:
643
0
    RSA_PSS_PARAMS_free(pss);
644
0
    return NULL;
645
0
}
646
647
static ASN1_STRING *rsa_ctx_to_pss_string(EVP_PKEY_CTX *pkctx)
648
0
{
649
0
    RSA_PSS_PARAMS *pss = rsa_ctx_to_pss(pkctx);
650
0
    ASN1_STRING *os;
651
652
0
    if (pss == NULL)
653
0
        return NULL;
654
655
0
    os = ASN1_item_pack(pss, ASN1_ITEM_rptr(RSA_PSS_PARAMS), NULL);
656
0
    RSA_PSS_PARAMS_free(pss);
657
0
    return os;
658
0
}
659
660
/*
661
 * From PSS AlgorithmIdentifier set public key parameters. If pkey isn't NULL
662
 * then the EVP_MD_CTX is setup and initialised. If it is NULL parameters are
663
 * passed to pkctx instead.
664
 */
665
666
static int rsa_pss_to_ctx(EVP_MD_CTX *ctx, EVP_PKEY_CTX *pkctx,
667
                          X509_ALGOR *sigalg, EVP_PKEY *pkey)
668
0
{
669
0
    int rv = -1;
670
0
    int saltlen;
671
0
    const EVP_MD *mgf1md = NULL, *md = NULL;
672
0
    RSA_PSS_PARAMS *pss;
673
674
    /* Sanity check: make sure it is PSS */
675
0
    if (OBJ_obj2nid(sigalg->algorithm) != EVP_PKEY_RSA_PSS) {
676
0
        RSAerr(RSA_F_RSA_PSS_TO_CTX, RSA_R_UNSUPPORTED_SIGNATURE_TYPE);
677
0
        return -1;
678
0
    }
679
    /* Decode PSS parameters */
680
0
    pss = rsa_pss_decode(sigalg);
681
682
0
    if (!rsa_pss_get_param(pss, &md, &mgf1md, &saltlen)) {
683
0
        RSAerr(RSA_F_RSA_PSS_TO_CTX, RSA_R_INVALID_PSS_PARAMETERS);
684
0
        goto err;
685
0
    }
686
687
    /* We have all parameters now set up context */
688
0
    if (pkey) {
689
0
        if (!EVP_DigestVerifyInit(ctx, &pkctx, md, NULL, pkey))
690
0
            goto err;
691
0
    } else {
692
0
        const EVP_MD *checkmd;
693
0
        if (EVP_PKEY_CTX_get_signature_md(pkctx, &checkmd) <= 0)
694
0
            goto err;
695
0
        if (EVP_MD_type(md) != EVP_MD_type(checkmd)) {
696
0
            RSAerr(RSA_F_RSA_PSS_TO_CTX, RSA_R_DIGEST_DOES_NOT_MATCH);
697
0
            goto err;
698
0
        }
699
0
    }
700
701
0
    if (EVP_PKEY_CTX_set_rsa_padding(pkctx, RSA_PKCS1_PSS_PADDING) <= 0)
702
0
        goto err;
703
704
0
    if (EVP_PKEY_CTX_set_rsa_pss_saltlen(pkctx, saltlen) <= 0)
705
0
        goto err;
706
707
0
    if (EVP_PKEY_CTX_set_rsa_mgf1_md(pkctx, mgf1md) <= 0)
708
0
        goto err;
709
    /* Carry on */
710
0
    rv = 1;
711
712
0
 err:
713
0
    RSA_PSS_PARAMS_free(pss);
714
0
    return rv;
715
0
}
716
717
int rsa_pss_get_param(const RSA_PSS_PARAMS *pss, const EVP_MD **pmd,
718
                      const EVP_MD **pmgf1md, int *psaltlen)
719
0
{
720
0
    if (pss == NULL)
721
0
        return 0;
722
0
    *pmd = rsa_algor_to_md(pss->hashAlgorithm);
723
0
    if (*pmd == NULL)
724
0
        return 0;
725
0
    *pmgf1md = rsa_algor_to_md(pss->maskHash);
726
0
    if (*pmgf1md == NULL)
727
0
        return 0;
728
0
    if (pss->saltLength) {
729
0
        *psaltlen = ASN1_INTEGER_get(pss->saltLength);
730
0
        if (*psaltlen < 0) {
731
0
            RSAerr(RSA_F_RSA_PSS_GET_PARAM, RSA_R_INVALID_SALT_LENGTH);
732
0
            return 0;
733
0
        }
734
0
    } else {
735
0
        *psaltlen = 20;
736
0
    }
737
738
    /*
739
     * low-level routines support only trailer field 0xbc (value 1) and
740
     * PKCS#1 says we should reject any other value anyway.
741
     */
742
0
    if (pss->trailerField && ASN1_INTEGER_get(pss->trailerField) != 1) {
743
0
        RSAerr(RSA_F_RSA_PSS_GET_PARAM, RSA_R_INVALID_TRAILER);
744
0
        return 0;
745
0
    }
746
747
0
    return 1;
748
0
}
749
750
#ifndef OPENSSL_NO_CMS
751
static int rsa_cms_verify(CMS_SignerInfo *si)
752
0
{
753
0
    int nid, nid2;
754
0
    X509_ALGOR *alg;
755
0
    EVP_PKEY_CTX *pkctx = CMS_SignerInfo_get0_pkey_ctx(si);
756
757
0
    CMS_SignerInfo_get0_algs(si, NULL, NULL, NULL, &alg);
758
0
    nid = OBJ_obj2nid(alg->algorithm);
759
0
    if (nid == EVP_PKEY_RSA_PSS)
760
0
        return rsa_pss_to_ctx(NULL, pkctx, alg, NULL);
761
    /* Only PSS allowed for PSS keys */
762
0
    if (pkey_ctx_is_pss(pkctx)) {
763
0
        RSAerr(RSA_F_RSA_CMS_VERIFY, RSA_R_ILLEGAL_OR_UNSUPPORTED_PADDING_MODE);
764
0
        return 0;
765
0
    }
766
0
    if (nid == NID_rsaEncryption)
767
0
        return 1;
768
    /* Workaround for some implementation that use a signature OID */
769
0
    if (OBJ_find_sigid_algs(nid, NULL, &nid2)) {
770
0
        if (nid2 == NID_rsaEncryption)
771
0
            return 1;
772
0
    }
773
0
    return 0;
774
0
}
775
#endif
776
777
/*
778
 * Customised RSA item verification routine. This is called when a signature
779
 * is encountered requiring special handling. We currently only handle PSS.
780
 */
781
782
static int rsa_item_verify(EVP_MD_CTX *ctx, const ASN1_ITEM *it, void *asn,
783
                           X509_ALGOR *sigalg, ASN1_BIT_STRING *sig,
784
                           EVP_PKEY *pkey)
785
0
{
786
    /* Sanity check: make sure it is PSS */
787
0
    if (OBJ_obj2nid(sigalg->algorithm) != EVP_PKEY_RSA_PSS) {
788
0
        RSAerr(RSA_F_RSA_ITEM_VERIFY, RSA_R_UNSUPPORTED_SIGNATURE_TYPE);
789
0
        return -1;
790
0
    }
791
0
    if (rsa_pss_to_ctx(ctx, NULL, sigalg, pkey) > 0) {
792
        /* Carry on */
793
0
        return 2;
794
0
    }
795
0
    return -1;
796
0
}
797
798
#ifndef OPENSSL_NO_CMS
799
static int rsa_cms_sign(CMS_SignerInfo *si)
800
0
{
801
0
    int pad_mode = RSA_PKCS1_PADDING;
802
0
    X509_ALGOR *alg;
803
0
    EVP_PKEY_CTX *pkctx = CMS_SignerInfo_get0_pkey_ctx(si);
804
0
    ASN1_STRING *os = NULL;
805
806
0
    CMS_SignerInfo_get0_algs(si, NULL, NULL, NULL, &alg);
807
0
    if (pkctx) {
808
0
        if (EVP_PKEY_CTX_get_rsa_padding(pkctx, &pad_mode) <= 0)
809
0
            return 0;
810
0
    }
811
0
    if (pad_mode == RSA_PKCS1_PADDING) {
812
0
        X509_ALGOR_set0(alg, OBJ_nid2obj(NID_rsaEncryption), V_ASN1_NULL, 0);
813
0
        return 1;
814
0
    }
815
    /* We don't support it */
816
0
    if (pad_mode != RSA_PKCS1_PSS_PADDING)
817
0
        return 0;
818
0
    os = rsa_ctx_to_pss_string(pkctx);
819
0
    if (!os)
820
0
        return 0;
821
0
    X509_ALGOR_set0(alg, OBJ_nid2obj(EVP_PKEY_RSA_PSS), V_ASN1_SEQUENCE, os);
822
0
    return 1;
823
0
}
824
#endif
825
826
static int rsa_item_sign(EVP_MD_CTX *ctx, const ASN1_ITEM *it, void *asn,
827
                         X509_ALGOR *alg1, X509_ALGOR *alg2,
828
                         ASN1_BIT_STRING *sig)
829
0
{
830
0
    int pad_mode;
831
0
    EVP_PKEY_CTX *pkctx = EVP_MD_CTX_pkey_ctx(ctx);
832
833
0
    if (EVP_PKEY_CTX_get_rsa_padding(pkctx, &pad_mode) <= 0)
834
0
        return 0;
835
0
    if (pad_mode == RSA_PKCS1_PADDING)
836
0
        return 2;
837
0
    if (pad_mode == RSA_PKCS1_PSS_PADDING) {
838
0
        ASN1_STRING *os1 = NULL;
839
0
        os1 = rsa_ctx_to_pss_string(pkctx);
840
0
        if (!os1)
841
0
            return 0;
842
        /* Duplicate parameters if we have to */
843
0
        if (alg2) {
844
0
            ASN1_STRING *os2 = ASN1_STRING_dup(os1);
845
0
            if (!os2) {
846
0
                ASN1_STRING_free(os1);
847
0
                return 0;
848
0
            }
849
0
            X509_ALGOR_set0(alg2, OBJ_nid2obj(EVP_PKEY_RSA_PSS),
850
0
                            V_ASN1_SEQUENCE, os2);
851
0
        }
852
0
        X509_ALGOR_set0(alg1, OBJ_nid2obj(EVP_PKEY_RSA_PSS),
853
0
                        V_ASN1_SEQUENCE, os1);
854
0
        return 3;
855
0
    }
856
0
    return 2;
857
0
}
858
859
static int rsa_sig_info_set(X509_SIG_INFO *siginf, const X509_ALGOR *sigalg,
860
                            const ASN1_STRING *sig)
861
0
{
862
0
    int rv = 0;
863
0
    int mdnid, saltlen;
864
0
    uint32_t flags;
865
0
    const EVP_MD *mgf1md = NULL, *md = NULL;
866
0
    RSA_PSS_PARAMS *pss;
867
868
    /* Sanity check: make sure it is PSS */
869
0
    if (OBJ_obj2nid(sigalg->algorithm) != EVP_PKEY_RSA_PSS)
870
0
        return 0;
871
    /* Decode PSS parameters */
872
0
    pss = rsa_pss_decode(sigalg);
873
0
    if (!rsa_pss_get_param(pss, &md, &mgf1md, &saltlen))
874
0
        goto err;
875
0
    mdnid = EVP_MD_type(md);
876
    /*
877
     * For TLS need SHA256, SHA384 or SHA512, digest and MGF1 digest must
878
     * match and salt length must equal digest size
879
     */
880
0
    if ((mdnid == NID_sha256 || mdnid == NID_sha384 || mdnid == NID_sha512)
881
0
            && mdnid == EVP_MD_type(mgf1md) && saltlen == EVP_MD_size(md))
882
0
        flags = X509_SIG_INFO_TLS;
883
0
    else
884
0
        flags = 0;
885
    /* Note: security bits half number of digest bits */
886
0
    X509_SIG_INFO_set(siginf, mdnid, EVP_PKEY_RSA_PSS, EVP_MD_size(md) * 4,
887
0
                      flags);
888
0
    rv = 1;
889
0
    err:
890
0
    RSA_PSS_PARAMS_free(pss);
891
0
    return rv;
892
0
}
893
894
#ifndef OPENSSL_NO_CMS
895
static RSA_OAEP_PARAMS *rsa_oaep_decode(const X509_ALGOR *alg)
896
0
{
897
0
    RSA_OAEP_PARAMS *oaep;
898
899
0
    oaep = ASN1_TYPE_unpack_sequence(ASN1_ITEM_rptr(RSA_OAEP_PARAMS),
900
0
                                     alg->parameter);
901
902
0
    if (oaep == NULL)
903
0
        return NULL;
904
905
0
    if (oaep->maskGenFunc != NULL) {
906
0
        oaep->maskHash = rsa_mgf1_decode(oaep->maskGenFunc);
907
0
        if (oaep->maskHash == NULL) {
908
0
            RSA_OAEP_PARAMS_free(oaep);
909
0
            return NULL;
910
0
        }
911
0
    }
912
0
    return oaep;
913
0
}
914
915
static int rsa_cms_decrypt(CMS_RecipientInfo *ri)
916
0
{
917
0
    EVP_PKEY_CTX *pkctx;
918
0
    X509_ALGOR *cmsalg;
919
0
    int nid;
920
0
    int rv = -1;
921
0
    unsigned char *label = NULL;
922
0
    int labellen = 0;
923
0
    const EVP_MD *mgf1md = NULL, *md = NULL;
924
0
    RSA_OAEP_PARAMS *oaep;
925
926
0
    pkctx = CMS_RecipientInfo_get0_pkey_ctx(ri);
927
0
    if (pkctx == NULL)
928
0
        return 0;
929
0
    if (!CMS_RecipientInfo_ktri_get0_algs(ri, NULL, NULL, &cmsalg))
930
0
        return -1;
931
0
    nid = OBJ_obj2nid(cmsalg->algorithm);
932
0
    if (nid == NID_rsaEncryption)
933
0
        return 1;
934
0
    if (nid != NID_rsaesOaep) {
935
0
        RSAerr(RSA_F_RSA_CMS_DECRYPT, RSA_R_UNSUPPORTED_ENCRYPTION_TYPE);
936
0
        return -1;
937
0
    }
938
    /* Decode OAEP parameters */
939
0
    oaep = rsa_oaep_decode(cmsalg);
940
941
0
    if (oaep == NULL) {
942
0
        RSAerr(RSA_F_RSA_CMS_DECRYPT, RSA_R_INVALID_OAEP_PARAMETERS);
943
0
        goto err;
944
0
    }
945
946
0
    mgf1md = rsa_algor_to_md(oaep->maskHash);
947
0
    if (mgf1md == NULL)
948
0
        goto err;
949
0
    md = rsa_algor_to_md(oaep->hashFunc);
950
0
    if (md == NULL)
951
0
        goto err;
952
953
0
    if (oaep->pSourceFunc != NULL) {
954
0
        X509_ALGOR *plab = oaep->pSourceFunc;
955
956
0
        if (OBJ_obj2nid(plab->algorithm) != NID_pSpecified) {
957
0
            RSAerr(RSA_F_RSA_CMS_DECRYPT, RSA_R_UNSUPPORTED_LABEL_SOURCE);
958
0
            goto err;
959
0
        }
960
0
        if (plab->parameter->type != V_ASN1_OCTET_STRING) {
961
0
            RSAerr(RSA_F_RSA_CMS_DECRYPT, RSA_R_INVALID_LABEL);
962
0
            goto err;
963
0
        }
964
965
0
        label = plab->parameter->value.octet_string->data;
966
        /* Stop label being freed when OAEP parameters are freed */
967
0
        plab->parameter->value.octet_string->data = NULL;
968
0
        labellen = plab->parameter->value.octet_string->length;
969
0
    }
970
971
0
    if (EVP_PKEY_CTX_set_rsa_padding(pkctx, RSA_PKCS1_OAEP_PADDING) <= 0)
972
0
        goto err;
973
0
    if (EVP_PKEY_CTX_set_rsa_oaep_md(pkctx, md) <= 0)
974
0
        goto err;
975
0
    if (EVP_PKEY_CTX_set_rsa_mgf1_md(pkctx, mgf1md) <= 0)
976
0
        goto err;
977
0
    if (EVP_PKEY_CTX_set0_rsa_oaep_label(pkctx, label, labellen) <= 0)
978
0
        goto err;
979
    /* Carry on */
980
0
    rv = 1;
981
982
0
 err:
983
0
    RSA_OAEP_PARAMS_free(oaep);
984
0
    return rv;
985
0
}
986
987
static int rsa_cms_encrypt(CMS_RecipientInfo *ri)
988
0
{
989
0
    const EVP_MD *md, *mgf1md;
990
0
    RSA_OAEP_PARAMS *oaep = NULL;
991
0
    ASN1_STRING *os = NULL;
992
0
    X509_ALGOR *alg;
993
0
    EVP_PKEY_CTX *pkctx = CMS_RecipientInfo_get0_pkey_ctx(ri);
994
0
    int pad_mode = RSA_PKCS1_PADDING, rv = 0, labellen;
995
0
    unsigned char *label;
996
997
0
    if (CMS_RecipientInfo_ktri_get0_algs(ri, NULL, NULL, &alg) <= 0)
998
0
        return 0;
999
0
    if (pkctx) {
1000
0
        if (EVP_PKEY_CTX_get_rsa_padding(pkctx, &pad_mode) <= 0)
1001
0
            return 0;
1002
0
    }
1003
0
    if (pad_mode == RSA_PKCS1_PADDING) {
1004
0
        X509_ALGOR_set0(alg, OBJ_nid2obj(NID_rsaEncryption), V_ASN1_NULL, 0);
1005
0
        return 1;
1006
0
    }
1007
    /* Not supported */
1008
0
    if (pad_mode != RSA_PKCS1_OAEP_PADDING)
1009
0
        return 0;
1010
0
    if (EVP_PKEY_CTX_get_rsa_oaep_md(pkctx, &md) <= 0)
1011
0
        goto err;
1012
0
    if (EVP_PKEY_CTX_get_rsa_mgf1_md(pkctx, &mgf1md) <= 0)
1013
0
        goto err;
1014
0
    labellen = EVP_PKEY_CTX_get0_rsa_oaep_label(pkctx, &label);
1015
0
    if (labellen < 0)
1016
0
        goto err;
1017
0
    oaep = RSA_OAEP_PARAMS_new();
1018
0
    if (oaep == NULL)
1019
0
        goto err;
1020
0
    if (!rsa_md_to_algor(&oaep->hashFunc, md))
1021
0
        goto err;
1022
0
    if (!rsa_md_to_mgf1(&oaep->maskGenFunc, mgf1md))
1023
0
        goto err;
1024
0
    if (labellen > 0) {
1025
0
        ASN1_OCTET_STRING *los;
1026
0
        oaep->pSourceFunc = X509_ALGOR_new();
1027
0
        if (oaep->pSourceFunc == NULL)
1028
0
            goto err;
1029
0
        los = ASN1_OCTET_STRING_new();
1030
0
        if (los == NULL)
1031
0
            goto err;
1032
0
        if (!ASN1_OCTET_STRING_set(los, label, labellen)) {
1033
0
            ASN1_OCTET_STRING_free(los);
1034
0
            goto err;
1035
0
        }
1036
0
        X509_ALGOR_set0(oaep->pSourceFunc, OBJ_nid2obj(NID_pSpecified),
1037
0
                        V_ASN1_OCTET_STRING, los);
1038
0
    }
1039
    /* create string with pss parameter encoding. */
1040
0
    if (!ASN1_item_pack(oaep, ASN1_ITEM_rptr(RSA_OAEP_PARAMS), &os))
1041
0
         goto err;
1042
0
    X509_ALGOR_set0(alg, OBJ_nid2obj(NID_rsaesOaep), V_ASN1_SEQUENCE, os);
1043
0
    os = NULL;
1044
0
    rv = 1;
1045
0
 err:
1046
0
    RSA_OAEP_PARAMS_free(oaep);
1047
0
    ASN1_STRING_free(os);
1048
0
    return rv;
1049
0
}
1050
#endif
1051
1052
static int rsa_pkey_check(const EVP_PKEY *pkey)
1053
0
{
1054
    return RSA_check_key_ex(pkey->pkey.rsa, NULL);
1055
0
}
1056
1057
const EVP_PKEY_ASN1_METHOD rsa_asn1_meths[2] = {
1058
    {
1059
     EVP_PKEY_RSA,
1060
     EVP_PKEY_RSA,
1061
     ASN1_PKEY_SIGPARAM_NULL,
1062
1063
     "RSA",
1064
     "OpenSSL RSA method",
1065
1066
     rsa_pub_decode,
1067
     rsa_pub_encode,
1068
     rsa_pub_cmp,
1069
     rsa_pub_print,
1070
1071
     rsa_priv_decode,
1072
     rsa_priv_encode,
1073
     rsa_priv_print,
1074
1075
     int_rsa_size,
1076
     rsa_bits,
1077
     rsa_security_bits,
1078
1079
     0, 0, 0, 0, 0, 0,
1080
1081
     rsa_sig_print,
1082
     int_rsa_free,
1083
     rsa_pkey_ctrl,
1084
     old_rsa_priv_decode,
1085
     old_rsa_priv_encode,
1086
     rsa_item_verify,
1087
     rsa_item_sign,
1088
     rsa_sig_info_set,
1089
     rsa_pkey_check
1090
    },
1091
1092
    {
1093
     EVP_PKEY_RSA2,
1094
     EVP_PKEY_RSA,
1095
     ASN1_PKEY_ALIAS}
1096
};
1097
1098
const EVP_PKEY_ASN1_METHOD rsa_pss_asn1_meth = {
1099
     EVP_PKEY_RSA_PSS,
1100
     EVP_PKEY_RSA_PSS,
1101
     ASN1_PKEY_SIGPARAM_NULL,
1102
1103
     "RSA-PSS",
1104
     "OpenSSL RSA-PSS method",
1105
1106
     rsa_pub_decode,
1107
     rsa_pub_encode,
1108
     rsa_pub_cmp,
1109
     rsa_pub_print,
1110
1111
     rsa_priv_decode,
1112
     rsa_priv_encode,
1113
     rsa_priv_print,
1114
1115
     int_rsa_size,
1116
     rsa_bits,
1117
     rsa_security_bits,
1118
1119
     0, 0, 0, 0, 0, 0,
1120
1121
     rsa_sig_print,
1122
     int_rsa_free,
1123
     rsa_pkey_ctrl,
1124
     0, 0,
1125
     rsa_item_verify,
1126
     rsa_item_sign,
1127
     0,
1128
     rsa_pkey_check
1129
};