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