Coverage Report

Created: 2023-09-25 06:42

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