1 /* crypto/rsa/rsa_pmeth.c */
2 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
5 /* ====================================================================
6 * Copyright (c) 2006 The OpenSSL Project. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * licensing@OpenSSL.org.
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
34 * 6. Redistributions of any form whatsoever must retain the following
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
61 #include <openssl/asn1t.h>
62 #include <openssl/x509.h>
63 #include <openssl/rsa.h>
64 #include <openssl/bn.h>
65 #include <openssl/evp.h>
66 #ifndef OPENSSL_NO_CMS
67 #include <openssl/cms.h>
70 #include <openssl/fips.h>
75 /* RSA pkey context structure */
79 /* Key gen parameters */
82 /* Keygen callback info */
84 /* RSA padding mode */
88 /* message digest for MGF1 */
90 /* PSS/OAEP salt length */
96 static int pkey_rsa_init(EVP_PKEY_CTX
*ctx
)
99 rctx
= OPENSSL_malloc(sizeof(RSA_PKEY_CTX
));
103 rctx
->pub_exp
= NULL
;
104 rctx
->pad_mode
= RSA_PKCS1_PADDING
;
112 ctx
->keygen_info
= rctx
->gentmp
;
113 ctx
->keygen_info_count
= 2;
118 static int pkey_rsa_copy(EVP_PKEY_CTX
*dst
, EVP_PKEY_CTX
*src
)
120 RSA_PKEY_CTX
*dctx
, *sctx
;
121 if (!pkey_rsa_init(dst
))
125 dctx
->nbits
= sctx
->nbits
;
128 dctx
->pub_exp
= BN_dup(sctx
->pub_exp
);
132 dctx
->pad_mode
= sctx
->pad_mode
;
137 static int setup_tbuf(RSA_PKEY_CTX
*ctx
, EVP_PKEY_CTX
*pk
)
141 ctx
->tbuf
= OPENSSL_malloc(EVP_PKEY_size(pk
->pkey
));
147 static void pkey_rsa_cleanup(EVP_PKEY_CTX
*ctx
)
149 RSA_PKEY_CTX
*rctx
= ctx
->data
;
153 BN_free(rctx
->pub_exp
);
155 OPENSSL_free(rctx
->tbuf
);
160 /* FIP checker. Return value indicates status of context parameters:
161 * 1 : redirect to FIPS.
162 * 0 : don't redirect to FIPS.
163 * -1 : illegal operation in FIPS mode.
166 static int pkey_fips_check_ctx(EVP_PKEY_CTX
*ctx
)
168 RSA_PKEY_CTX
*rctx
= ctx
->data
;
169 RSA
*rsa
= ctx
->pkey
->pkey
.rsa
;
173 if (rsa
->flags
& RSA_FLAG_NON_FIPS_ALLOW
)
175 if (!(rsa
->meth
->flags
& RSA_FLAG_FIPS_METHOD
) && rv
)
177 if (rctx
->md
&& !(rctx
->md
->flags
& EVP_MD_FLAG_FIPS
))
179 if (rctx
->mgf1md
&& !(rctx
->mgf1md
->flags
& EVP_MD_FLAG_FIPS
))
185 static int pkey_rsa_sign(EVP_PKEY_CTX
*ctx
, unsigned char *sig
, size_t *siglen
,
186 const unsigned char *tbs
, size_t tbslen
)
189 RSA_PKEY_CTX
*rctx
= ctx
->data
;
190 RSA
*rsa
= ctx
->pkey
->pkey
.rsa
;
193 ret
= pkey_fips_check_ctx(ctx
);
196 RSAerr(RSA_F_PKEY_RSA_SIGN
, RSA_R_OPERATION_NOT_ALLOWED_IN_FIPS_MODE
);
203 if (tbslen
!= (size_t)EVP_MD_size(rctx
->md
))
205 RSAerr(RSA_F_PKEY_RSA_SIGN
,
206 RSA_R_INVALID_DIGEST_LENGTH
);
213 ret
= FIPS_rsa_sign_digest(rsa
, tbs
, tbslen
, rctx
->md
,
226 if (EVP_MD_type(rctx
->md
) == NID_mdc2
)
229 if (rctx
->pad_mode
!= RSA_PKCS1_PADDING
)
231 ret
= RSA_sign_ASN1_OCTET_STRING(NID_mdc2
,
232 tbs
, tbslen
, sig
, &sltmp
, rsa
);
238 else if (rctx
->pad_mode
== RSA_X931_PADDING
)
240 if (!setup_tbuf(rctx
, ctx
))
242 memcpy(rctx
->tbuf
, tbs
, tbslen
);
244 RSA_X931_hash_id(EVP_MD_type(rctx
->md
));
245 ret
= RSA_private_encrypt(tbslen
+ 1, rctx
->tbuf
,
246 sig
, rsa
, RSA_X931_PADDING
);
248 else if (rctx
->pad_mode
== RSA_PKCS1_PADDING
)
251 ret
= RSA_sign(EVP_MD_type(rctx
->md
),
252 tbs
, tbslen
, sig
, &sltmp
, rsa
);
257 else if (rctx
->pad_mode
== RSA_PKCS1_PSS_PADDING
)
259 if (!setup_tbuf(rctx
, ctx
))
261 if (!RSA_padding_add_PKCS1_PSS_mgf1(rsa
,
263 rctx
->md
, rctx
->mgf1md
,
266 ret
= RSA_private_encrypt(RSA_size(rsa
), rctx
->tbuf
,
267 sig
, rsa
, RSA_NO_PADDING
);
273 ret
= RSA_private_encrypt(tbslen
, tbs
, sig
, ctx
->pkey
->pkey
.rsa
,
282 static int pkey_rsa_verifyrecover(EVP_PKEY_CTX
*ctx
,
283 unsigned char *rout
, size_t *routlen
,
284 const unsigned char *sig
, size_t siglen
)
287 RSA_PKEY_CTX
*rctx
= ctx
->data
;
291 if (rctx
->pad_mode
== RSA_X931_PADDING
)
293 if (!setup_tbuf(rctx
, ctx
))
295 ret
= RSA_public_decrypt(siglen
, sig
,
296 rctx
->tbuf
, ctx
->pkey
->pkey
.rsa
,
301 if (rctx
->tbuf
[ret
] !=
302 RSA_X931_hash_id(EVP_MD_type(rctx
->md
)))
304 RSAerr(RSA_F_PKEY_RSA_VERIFYRECOVER
,
305 RSA_R_ALGORITHM_MISMATCH
);
308 if (ret
!= EVP_MD_size(rctx
->md
))
310 RSAerr(RSA_F_PKEY_RSA_VERIFYRECOVER
,
311 RSA_R_INVALID_DIGEST_LENGTH
);
315 memcpy(rout
, rctx
->tbuf
, ret
);
317 else if (rctx
->pad_mode
== RSA_PKCS1_PADDING
)
320 ret
= int_rsa_verify(EVP_MD_type(rctx
->md
),
321 NULL
, 0, rout
, &sltmp
,
322 sig
, siglen
, ctx
->pkey
->pkey
.rsa
);
331 ret
= RSA_public_decrypt(siglen
, sig
, rout
, ctx
->pkey
->pkey
.rsa
,
339 static int pkey_rsa_verify(EVP_PKEY_CTX
*ctx
,
340 const unsigned char *sig
, size_t siglen
,
341 const unsigned char *tbs
, size_t tbslen
)
343 RSA_PKEY_CTX
*rctx
= ctx
->data
;
344 RSA
*rsa
= ctx
->pkey
->pkey
.rsa
;
348 rv
= pkey_fips_check_ctx(ctx
);
351 RSAerr(RSA_F_PKEY_RSA_VERIFY
, RSA_R_OPERATION_NOT_ALLOWED_IN_FIPS_MODE
);
360 return FIPS_rsa_verify_digest(rsa
,
370 if (rctx
->pad_mode
== RSA_PKCS1_PADDING
)
371 return RSA_verify(EVP_MD_type(rctx
->md
), tbs
, tbslen
,
373 if (rctx
->pad_mode
== RSA_X931_PADDING
)
375 if (pkey_rsa_verifyrecover(ctx
, NULL
, &rslen
,
379 else if (rctx
->pad_mode
== RSA_PKCS1_PSS_PADDING
)
382 if (!setup_tbuf(rctx
, ctx
))
384 ret
= RSA_public_decrypt(siglen
, sig
, rctx
->tbuf
,
385 rsa
, RSA_NO_PADDING
);
388 ret
= RSA_verify_PKCS1_PSS_mgf1(rsa
, tbs
,
389 rctx
->md
, rctx
->mgf1md
,
390 rctx
->tbuf
, rctx
->saltlen
);
400 if (!setup_tbuf(rctx
, ctx
))
402 rslen
= RSA_public_decrypt(siglen
, sig
, rctx
->tbuf
,
403 rsa
, rctx
->pad_mode
);
408 if ((rslen
!= tbslen
) || memcmp(tbs
, rctx
->tbuf
, rslen
))
416 static int pkey_rsa_encrypt(EVP_PKEY_CTX
*ctx
,
417 unsigned char *out
, size_t *outlen
,
418 const unsigned char *in
, size_t inlen
)
421 RSA_PKEY_CTX
*rctx
= ctx
->data
;
422 ret
= RSA_public_encrypt(inlen
, in
, out
, ctx
->pkey
->pkey
.rsa
,
430 static int pkey_rsa_decrypt(EVP_PKEY_CTX
*ctx
,
431 unsigned char *out
, size_t *outlen
,
432 const unsigned char *in
, size_t inlen
)
435 RSA_PKEY_CTX
*rctx
= ctx
->data
;
436 ret
= RSA_private_decrypt(inlen
, in
, out
, ctx
->pkey
->pkey
.rsa
,
444 static int check_padding_md(const EVP_MD
*md
, int padding
)
449 if (padding
== RSA_NO_PADDING
)
451 RSAerr(RSA_F_CHECK_PADDING_MD
, RSA_R_INVALID_PADDING_MODE
);
455 if (padding
== RSA_X931_PADDING
)
457 if (RSA_X931_hash_id(EVP_MD_type(md
)) == -1)
459 RSAerr(RSA_F_CHECK_PADDING_MD
,
460 RSA_R_INVALID_X931_DIGEST
);
470 static int pkey_rsa_ctrl(EVP_PKEY_CTX
*ctx
, int type
, int p1
, void *p2
)
472 RSA_PKEY_CTX
*rctx
= ctx
->data
;
475 case EVP_PKEY_CTRL_RSA_PADDING
:
476 if ((p1
>= RSA_PKCS1_PADDING
) && (p1
<= RSA_PKCS1_PSS_PADDING
))
478 if (!check_padding_md(rctx
->md
, p1
))
480 if (p1
== RSA_PKCS1_PSS_PADDING
)
482 if (!(ctx
->operation
&
483 (EVP_PKEY_OP_SIGN
| EVP_PKEY_OP_VERIFY
)))
486 rctx
->md
= EVP_sha1();
488 if (p1
== RSA_PKCS1_OAEP_PADDING
)
490 if (!(ctx
->operation
& EVP_PKEY_OP_TYPE_CRYPT
))
493 rctx
->md
= EVP_sha1();
499 RSAerr(RSA_F_PKEY_RSA_CTRL
,
500 RSA_R_ILLEGAL_OR_UNSUPPORTED_PADDING_MODE
);
503 case EVP_PKEY_CTRL_GET_RSA_PADDING
:
504 *(int *)p2
= rctx
->pad_mode
;
507 case EVP_PKEY_CTRL_RSA_PSS_SALTLEN
:
508 case EVP_PKEY_CTRL_GET_RSA_PSS_SALTLEN
:
509 if (rctx
->pad_mode
!= RSA_PKCS1_PSS_PADDING
)
511 RSAerr(RSA_F_PKEY_RSA_CTRL
, RSA_R_INVALID_PSS_SALTLEN
);
514 if (type
== EVP_PKEY_CTRL_GET_RSA_PSS_SALTLEN
)
515 *(int *)p2
= rctx
->saltlen
;
524 case EVP_PKEY_CTRL_RSA_KEYGEN_BITS
:
527 RSAerr(RSA_F_PKEY_RSA_CTRL
, RSA_R_INVALID_KEYBITS
);
533 case EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP
:
539 case EVP_PKEY_CTRL_MD
:
540 if (!check_padding_md(p2
, rctx
->pad_mode
))
545 case EVP_PKEY_CTRL_RSA_MGF1_MD
:
546 case EVP_PKEY_CTRL_GET_RSA_MGF1_MD
:
547 if (rctx
->pad_mode
!= RSA_PKCS1_PSS_PADDING
)
549 RSAerr(RSA_F_PKEY_RSA_CTRL
, RSA_R_INVALID_MGF1_MD
);
552 if (type
== EVP_PKEY_CTRL_GET_RSA_MGF1_MD
)
555 *(const EVP_MD
**)p2
= rctx
->mgf1md
;
557 *(const EVP_MD
**)p2
= rctx
->md
;
563 case EVP_PKEY_CTRL_DIGESTINIT
:
564 case EVP_PKEY_CTRL_PKCS7_ENCRYPT
:
565 case EVP_PKEY_CTRL_PKCS7_DECRYPT
:
566 case EVP_PKEY_CTRL_PKCS7_SIGN
:
568 #ifndef OPENSSL_NO_CMS
569 case EVP_PKEY_CTRL_CMS_DECRYPT
:
571 X509_ALGOR
*alg
= NULL
;
572 ASN1_OBJECT
*encalg
= NULL
;
574 CMS_RecipientInfo_ktri_get0_algs(p2
, NULL
, NULL
, &alg
);
576 X509_ALGOR_get0(&encalg
, NULL
, NULL
, alg
);
577 if (encalg
&& OBJ_obj2nid(encalg
) == NID_rsaesOaep
)
578 rctx
->pad_mode
= RSA_PKCS1_OAEP_PADDING
;
580 case EVP_PKEY_CTRL_CMS_ENCRYPT
:
581 case EVP_PKEY_CTRL_CMS_SIGN
:
584 case EVP_PKEY_CTRL_PEER_KEY
:
585 RSAerr(RSA_F_PKEY_RSA_CTRL
,
586 RSA_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE
);
595 static int pkey_rsa_ctrl_str(EVP_PKEY_CTX
*ctx
,
596 const char *type
, const char *value
)
600 RSAerr(RSA_F_PKEY_RSA_CTRL_STR
, RSA_R_VALUE_MISSING
);
603 if (!strcmp(type
, "rsa_padding_mode"))
606 if (!strcmp(value
, "pkcs1"))
607 pm
= RSA_PKCS1_PADDING
;
608 else if (!strcmp(value
, "sslv23"))
609 pm
= RSA_SSLV23_PADDING
;
610 else if (!strcmp(value
, "none"))
612 else if (!strcmp(value
, "oeap"))
613 pm
= RSA_PKCS1_OAEP_PADDING
;
614 else if (!strcmp(value
, "oaep"))
615 pm
= RSA_PKCS1_OAEP_PADDING
;
616 else if (!strcmp(value
, "x931"))
617 pm
= RSA_X931_PADDING
;
618 else if (!strcmp(value
, "pss"))
619 pm
= RSA_PKCS1_PSS_PADDING
;
622 RSAerr(RSA_F_PKEY_RSA_CTRL_STR
,
623 RSA_R_UNKNOWN_PADDING_TYPE
);
626 return EVP_PKEY_CTX_set_rsa_padding(ctx
, pm
);
629 if (!strcmp(type
, "rsa_pss_saltlen"))
632 saltlen
= atoi(value
);
633 return EVP_PKEY_CTX_set_rsa_pss_saltlen(ctx
, saltlen
);
636 if (!strcmp(type
, "rsa_keygen_bits"))
640 return EVP_PKEY_CTX_set_rsa_keygen_bits(ctx
, nbits
);
643 if (!strcmp(type
, "rsa_keygen_pubexp"))
646 BIGNUM
*pubexp
= NULL
;
647 if (!BN_asc2bn(&pubexp
, value
))
649 ret
= EVP_PKEY_CTX_set_rsa_keygen_pubexp(ctx
, pubexp
);
658 static int pkey_rsa_keygen(EVP_PKEY_CTX
*ctx
, EVP_PKEY
*pkey
)
661 RSA_PKEY_CTX
*rctx
= ctx
->data
;
666 rctx
->pub_exp
= BN_new();
667 if (!rctx
->pub_exp
|| !BN_set_word(rctx
->pub_exp
, RSA_F4
))
676 evp_pkey_set_cb_translate(pcb
, ctx
);
680 ret
= RSA_generate_key_ex(rsa
, rctx
->nbits
, rctx
->pub_exp
, pcb
);
682 EVP_PKEY_assign_RSA(pkey
, rsa
);
688 const EVP_PKEY_METHOD rsa_pkey_meth
=
691 EVP_PKEY_FLAG_AUTOARGLEN
,
708 pkey_rsa_verifyrecover
,