Move openssl-0.9/ to openssl/.
[dragonfly.git] / crypto / openssl / crypto / rsa / rsa_eay.c
blob283ddd8f1f0a7c446e6dae4d5e17a875079d4df9
1 /* crypto/rsa/rsa_eay.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
58 /* ====================================================================
59 * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved.
61 * Redistribution and use in source and binary forms, with or without
62 * modification, are permitted provided that the following conditions
63 * are met:
65 * 1. Redistributions of source code must retain the above copyright
66 * notice, this list of conditions and the following disclaimer.
68 * 2. Redistributions in binary form must reproduce the above copyright
69 * notice, this list of conditions and the following disclaimer in
70 * the documentation and/or other materials provided with the
71 * distribution.
73 * 3. All advertising materials mentioning features or use of this
74 * software must display the following acknowledgment:
75 * "This product includes software developed by the OpenSSL Project
76 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
78 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
79 * endorse or promote products derived from this software without
80 * prior written permission. For written permission, please contact
81 * openssl-core@openssl.org.
83 * 5. Products derived from this software may not be called "OpenSSL"
84 * nor may "OpenSSL" appear in their names without prior written
85 * permission of the OpenSSL Project.
87 * 6. Redistributions of any form whatsoever must retain the following
88 * acknowledgment:
89 * "This product includes software developed by the OpenSSL Project
90 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
92 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
93 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
94 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
95 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
96 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
97 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
98 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
99 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
100 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
101 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
102 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
103 * OF THE POSSIBILITY OF SUCH DAMAGE.
104 * ====================================================================
106 * This product includes cryptographic software written by Eric Young
107 * (eay@cryptsoft.com). This product includes software written by Tim
108 * Hudson (tjh@cryptsoft.com).
112 #include <stdio.h>
113 #include "cryptlib.h"
114 #include <openssl/bn.h>
115 #include <openssl/rsa.h>
116 #include <openssl/rand.h>
118 #ifndef RSA_NULL
120 static int RSA_eay_public_encrypt(int flen, const unsigned char *from,
121 unsigned char *to, RSA *rsa,int padding);
122 static int RSA_eay_private_encrypt(int flen, const unsigned char *from,
123 unsigned char *to, RSA *rsa,int padding);
124 static int RSA_eay_public_decrypt(int flen, const unsigned char *from,
125 unsigned char *to, RSA *rsa,int padding);
126 static int RSA_eay_private_decrypt(int flen, const unsigned char *from,
127 unsigned char *to, RSA *rsa,int padding);
128 static int RSA_eay_mod_exp(BIGNUM *r0, const BIGNUM *i, RSA *rsa, BN_CTX *ctx);
129 static int RSA_eay_init(RSA *rsa);
130 static int RSA_eay_finish(RSA *rsa);
131 static RSA_METHOD rsa_pkcs1_eay_meth={
132 "Eric Young's PKCS#1 RSA",
133 RSA_eay_public_encrypt,
134 RSA_eay_public_decrypt, /* signature verification */
135 RSA_eay_private_encrypt, /* signing */
136 RSA_eay_private_decrypt,
137 RSA_eay_mod_exp,
138 BN_mod_exp_mont, /* XXX probably we should not use Montgomery if e == 3 */
139 RSA_eay_init,
140 RSA_eay_finish,
141 0, /* flags */
142 NULL,
143 0, /* rsa_sign */
144 0, /* rsa_verify */
145 NULL /* rsa_keygen */
148 const RSA_METHOD *RSA_PKCS1_SSLeay(void)
150 return(&rsa_pkcs1_eay_meth);
153 static int RSA_eay_public_encrypt(int flen, const unsigned char *from,
154 unsigned char *to, RSA *rsa, int padding)
156 BIGNUM *f,*ret;
157 int i,j,k,num=0,r= -1;
158 unsigned char *buf=NULL;
159 BN_CTX *ctx=NULL;
161 if (BN_num_bits(rsa->n) > OPENSSL_RSA_MAX_MODULUS_BITS)
163 RSAerr(RSA_F_RSA_EAY_PUBLIC_ENCRYPT, RSA_R_MODULUS_TOO_LARGE);
164 return -1;
167 if (BN_ucmp(rsa->n, rsa->e) <= 0)
169 RSAerr(RSA_F_RSA_EAY_PUBLIC_ENCRYPT, RSA_R_BAD_E_VALUE);
170 return -1;
173 /* for large moduli, enforce exponent limit */
174 if (BN_num_bits(rsa->n) > OPENSSL_RSA_SMALL_MODULUS_BITS)
176 if (BN_num_bits(rsa->e) > OPENSSL_RSA_MAX_PUBEXP_BITS)
178 RSAerr(RSA_F_RSA_EAY_PUBLIC_ENCRYPT, RSA_R_BAD_E_VALUE);
179 return -1;
183 if ((ctx=BN_CTX_new()) == NULL) goto err;
184 BN_CTX_start(ctx);
185 f = BN_CTX_get(ctx);
186 ret = BN_CTX_get(ctx);
187 num=BN_num_bytes(rsa->n);
188 buf = OPENSSL_malloc(num);
189 if (!f || !ret || !buf)
191 RSAerr(RSA_F_RSA_EAY_PUBLIC_ENCRYPT,ERR_R_MALLOC_FAILURE);
192 goto err;
195 switch (padding)
197 case RSA_PKCS1_PADDING:
198 i=RSA_padding_add_PKCS1_type_2(buf,num,from,flen);
199 break;
200 #ifndef OPENSSL_NO_SHA
201 case RSA_PKCS1_OAEP_PADDING:
202 i=RSA_padding_add_PKCS1_OAEP(buf,num,from,flen,NULL,0);
203 break;
204 #endif
205 case RSA_SSLV23_PADDING:
206 i=RSA_padding_add_SSLv23(buf,num,from,flen);
207 break;
208 case RSA_NO_PADDING:
209 i=RSA_padding_add_none(buf,num,from,flen);
210 break;
211 default:
212 RSAerr(RSA_F_RSA_EAY_PUBLIC_ENCRYPT,RSA_R_UNKNOWN_PADDING_TYPE);
213 goto err;
215 if (i <= 0) goto err;
217 if (BN_bin2bn(buf,num,f) == NULL) goto err;
219 if (BN_ucmp(f, rsa->n) >= 0)
221 /* usually the padding functions would catch this */
222 RSAerr(RSA_F_RSA_EAY_PUBLIC_ENCRYPT,RSA_R_DATA_TOO_LARGE_FOR_MODULUS);
223 goto err;
226 if (rsa->flags & RSA_FLAG_CACHE_PUBLIC)
227 if (!BN_MONT_CTX_set_locked(&rsa->_method_mod_n, CRYPTO_LOCK_RSA, rsa->n, ctx))
228 goto err;
230 if (!rsa->meth->bn_mod_exp(ret,f,rsa->e,rsa->n,ctx,
231 rsa->_method_mod_n)) goto err;
233 /* put in leading 0 bytes if the number is less than the
234 * length of the modulus */
235 j=BN_num_bytes(ret);
236 i=BN_bn2bin(ret,&(to[num-j]));
237 for (k=0; k<(num-i); k++)
238 to[k]=0;
240 r=num;
241 err:
242 if (ctx != NULL)
244 BN_CTX_end(ctx);
245 BN_CTX_free(ctx);
247 if (buf != NULL)
249 OPENSSL_cleanse(buf,num);
250 OPENSSL_free(buf);
252 return(r);
255 static BN_BLINDING *rsa_get_blinding(RSA *rsa, int *local, BN_CTX *ctx)
257 BN_BLINDING *ret;
258 int got_write_lock = 0;
260 CRYPTO_r_lock(CRYPTO_LOCK_RSA);
262 if (rsa->blinding == NULL)
264 CRYPTO_r_unlock(CRYPTO_LOCK_RSA);
265 CRYPTO_w_lock(CRYPTO_LOCK_RSA);
266 got_write_lock = 1;
268 if (rsa->blinding == NULL)
269 rsa->blinding = RSA_setup_blinding(rsa, ctx);
272 ret = rsa->blinding;
273 if (ret == NULL)
274 goto err;
276 if (BN_BLINDING_get_thread_id(ret) == CRYPTO_thread_id())
278 /* rsa->blinding is ours! */
280 *local = 1;
282 else
284 /* resort to rsa->mt_blinding instead */
286 *local = 0; /* instructs rsa_blinding_convert(), rsa_blinding_invert()
287 * that the BN_BLINDING is shared, meaning that accesses
288 * require locks, and that the blinding factor must be
289 * stored outside the BN_BLINDING
292 if (rsa->mt_blinding == NULL)
294 if (!got_write_lock)
296 CRYPTO_r_unlock(CRYPTO_LOCK_RSA);
297 CRYPTO_w_lock(CRYPTO_LOCK_RSA);
298 got_write_lock = 1;
301 if (rsa->mt_blinding == NULL)
302 rsa->mt_blinding = RSA_setup_blinding(rsa, ctx);
304 ret = rsa->mt_blinding;
307 err:
308 if (got_write_lock)
309 CRYPTO_w_unlock(CRYPTO_LOCK_RSA);
310 else
311 CRYPTO_r_unlock(CRYPTO_LOCK_RSA);
312 return ret;
315 static int rsa_blinding_convert(BN_BLINDING *b, int local, BIGNUM *f,
316 BIGNUM *r, BN_CTX *ctx)
318 if (local)
319 return BN_BLINDING_convert_ex(f, NULL, b, ctx);
320 else
322 int ret;
323 CRYPTO_r_lock(CRYPTO_LOCK_RSA_BLINDING);
324 ret = BN_BLINDING_convert_ex(f, r, b, ctx);
325 CRYPTO_r_unlock(CRYPTO_LOCK_RSA_BLINDING);
326 return ret;
330 static int rsa_blinding_invert(BN_BLINDING *b, int local, BIGNUM *f,
331 BIGNUM *r, BN_CTX *ctx)
333 if (local)
334 return BN_BLINDING_invert_ex(f, NULL, b, ctx);
335 else
337 int ret;
338 CRYPTO_w_lock(CRYPTO_LOCK_RSA_BLINDING);
339 ret = BN_BLINDING_invert_ex(f, r, b, ctx);
340 CRYPTO_w_unlock(CRYPTO_LOCK_RSA_BLINDING);
341 return ret;
345 /* signing */
346 static int RSA_eay_private_encrypt(int flen, const unsigned char *from,
347 unsigned char *to, RSA *rsa, int padding)
349 BIGNUM *f, *ret, *br, *res;
350 int i,j,k,num=0,r= -1;
351 unsigned char *buf=NULL;
352 BN_CTX *ctx=NULL;
353 int local_blinding = 0;
354 BN_BLINDING *blinding = NULL;
356 if ((ctx=BN_CTX_new()) == NULL) goto err;
357 BN_CTX_start(ctx);
358 f = BN_CTX_get(ctx);
359 br = BN_CTX_get(ctx);
360 ret = BN_CTX_get(ctx);
361 num = BN_num_bytes(rsa->n);
362 buf = OPENSSL_malloc(num);
363 if(!f || !ret || !buf)
365 RSAerr(RSA_F_RSA_EAY_PRIVATE_ENCRYPT,ERR_R_MALLOC_FAILURE);
366 goto err;
369 switch (padding)
371 case RSA_PKCS1_PADDING:
372 i=RSA_padding_add_PKCS1_type_1(buf,num,from,flen);
373 break;
374 case RSA_X931_PADDING:
375 i=RSA_padding_add_X931(buf,num,from,flen);
376 break;
377 case RSA_NO_PADDING:
378 i=RSA_padding_add_none(buf,num,from,flen);
379 break;
380 case RSA_SSLV23_PADDING:
381 default:
382 RSAerr(RSA_F_RSA_EAY_PRIVATE_ENCRYPT,RSA_R_UNKNOWN_PADDING_TYPE);
383 goto err;
385 if (i <= 0) goto err;
387 if (BN_bin2bn(buf,num,f) == NULL) goto err;
389 if (BN_ucmp(f, rsa->n) >= 0)
391 /* usually the padding functions would catch this */
392 RSAerr(RSA_F_RSA_EAY_PRIVATE_ENCRYPT,RSA_R_DATA_TOO_LARGE_FOR_MODULUS);
393 goto err;
396 if (!(rsa->flags & RSA_FLAG_NO_BLINDING))
398 blinding = rsa_get_blinding(rsa, &local_blinding, ctx);
399 if (blinding == NULL)
401 RSAerr(RSA_F_RSA_EAY_PRIVATE_ENCRYPT, ERR_R_INTERNAL_ERROR);
402 goto err;
406 if (blinding != NULL)
407 if (!rsa_blinding_convert(blinding, local_blinding, f, br, ctx))
408 goto err;
410 if ( (rsa->flags & RSA_FLAG_EXT_PKEY) ||
411 ((rsa->p != NULL) &&
412 (rsa->q != NULL) &&
413 (rsa->dmp1 != NULL) &&
414 (rsa->dmq1 != NULL) &&
415 (rsa->iqmp != NULL)) )
417 if (!rsa->meth->rsa_mod_exp(ret, f, rsa, ctx)) goto err;
419 else
421 BIGNUM local_d;
422 BIGNUM *d = NULL;
424 if (!(rsa->flags & RSA_FLAG_NO_CONSTTIME))
426 BN_init(&local_d);
427 d = &local_d;
428 BN_with_flags(d, rsa->d, BN_FLG_CONSTTIME);
430 else
431 d= rsa->d;
433 if (rsa->flags & RSA_FLAG_CACHE_PUBLIC)
434 if(!BN_MONT_CTX_set_locked(&rsa->_method_mod_n, CRYPTO_LOCK_RSA, rsa->n, ctx))
435 goto err;
437 if (!rsa->meth->bn_mod_exp(ret,f,d,rsa->n,ctx,
438 rsa->_method_mod_n)) goto err;
441 if (blinding)
442 if (!rsa_blinding_invert(blinding, local_blinding, ret, br, ctx))
443 goto err;
445 if (padding == RSA_X931_PADDING)
447 BN_sub(f, rsa->n, ret);
448 if (BN_cmp(ret, f))
449 res = f;
450 else
451 res = ret;
453 else
454 res = ret;
456 /* put in leading 0 bytes if the number is less than the
457 * length of the modulus */
458 j=BN_num_bytes(res);
459 i=BN_bn2bin(res,&(to[num-j]));
460 for (k=0; k<(num-i); k++)
461 to[k]=0;
463 r=num;
464 err:
465 if (ctx != NULL)
467 BN_CTX_end(ctx);
468 BN_CTX_free(ctx);
470 if (buf != NULL)
472 OPENSSL_cleanse(buf,num);
473 OPENSSL_free(buf);
475 return(r);
478 static int RSA_eay_private_decrypt(int flen, const unsigned char *from,
479 unsigned char *to, RSA *rsa, int padding)
481 BIGNUM *f, *ret, *br;
482 int j,num=0,r= -1;
483 unsigned char *p;
484 unsigned char *buf=NULL;
485 BN_CTX *ctx=NULL;
486 int local_blinding = 0;
487 BN_BLINDING *blinding = NULL;
489 if((ctx = BN_CTX_new()) == NULL) goto err;
490 BN_CTX_start(ctx);
491 f = BN_CTX_get(ctx);
492 br = BN_CTX_get(ctx);
493 ret = BN_CTX_get(ctx);
494 num = BN_num_bytes(rsa->n);
495 buf = OPENSSL_malloc(num);
496 if(!f || !ret || !buf)
498 RSAerr(RSA_F_RSA_EAY_PRIVATE_DECRYPT,ERR_R_MALLOC_FAILURE);
499 goto err;
502 /* This check was for equality but PGP does evil things
503 * and chops off the top '0' bytes */
504 if (flen > num)
506 RSAerr(RSA_F_RSA_EAY_PRIVATE_DECRYPT,RSA_R_DATA_GREATER_THAN_MOD_LEN);
507 goto err;
510 /* make data into a big number */
511 if (BN_bin2bn(from,(int)flen,f) == NULL) goto err;
513 if (BN_ucmp(f, rsa->n) >= 0)
515 RSAerr(RSA_F_RSA_EAY_PRIVATE_DECRYPT,RSA_R_DATA_TOO_LARGE_FOR_MODULUS);
516 goto err;
519 if (!(rsa->flags & RSA_FLAG_NO_BLINDING))
521 blinding = rsa_get_blinding(rsa, &local_blinding, ctx);
522 if (blinding == NULL)
524 RSAerr(RSA_F_RSA_EAY_PRIVATE_DECRYPT, ERR_R_INTERNAL_ERROR);
525 goto err;
529 if (blinding != NULL)
530 if (!rsa_blinding_convert(blinding, local_blinding, f, br, ctx))
531 goto err;
533 /* do the decrypt */
534 if ( (rsa->flags & RSA_FLAG_EXT_PKEY) ||
535 ((rsa->p != NULL) &&
536 (rsa->q != NULL) &&
537 (rsa->dmp1 != NULL) &&
538 (rsa->dmq1 != NULL) &&
539 (rsa->iqmp != NULL)) )
541 if (!rsa->meth->rsa_mod_exp(ret, f, rsa, ctx)) goto err;
543 else
545 BIGNUM local_d;
546 BIGNUM *d = NULL;
548 if (!(rsa->flags & RSA_FLAG_NO_CONSTTIME))
550 d = &local_d;
551 BN_with_flags(d, rsa->d, BN_FLG_CONSTTIME);
553 else
554 d = rsa->d;
556 if (rsa->flags & RSA_FLAG_CACHE_PUBLIC)
557 if (!BN_MONT_CTX_set_locked(&rsa->_method_mod_n, CRYPTO_LOCK_RSA, rsa->n, ctx))
558 goto err;
559 if (!rsa->meth->bn_mod_exp(ret,f,d,rsa->n,ctx,
560 rsa->_method_mod_n))
561 goto err;
564 if (blinding)
565 if (!rsa_blinding_invert(blinding, local_blinding, ret, br, ctx))
566 goto err;
568 p=buf;
569 j=BN_bn2bin(ret,p); /* j is only used with no-padding mode */
571 switch (padding)
573 case RSA_PKCS1_PADDING:
574 r=RSA_padding_check_PKCS1_type_2(to,num,buf,j,num);
575 break;
576 #ifndef OPENSSL_NO_SHA
577 case RSA_PKCS1_OAEP_PADDING:
578 r=RSA_padding_check_PKCS1_OAEP(to,num,buf,j,num,NULL,0);
579 break;
580 #endif
581 case RSA_SSLV23_PADDING:
582 r=RSA_padding_check_SSLv23(to,num,buf,j,num);
583 break;
584 case RSA_NO_PADDING:
585 r=RSA_padding_check_none(to,num,buf,j,num);
586 break;
587 default:
588 RSAerr(RSA_F_RSA_EAY_PRIVATE_DECRYPT,RSA_R_UNKNOWN_PADDING_TYPE);
589 goto err;
591 if (r < 0)
592 RSAerr(RSA_F_RSA_EAY_PRIVATE_DECRYPT,RSA_R_PADDING_CHECK_FAILED);
594 err:
595 if (ctx != NULL)
597 BN_CTX_end(ctx);
598 BN_CTX_free(ctx);
600 if (buf != NULL)
602 OPENSSL_cleanse(buf,num);
603 OPENSSL_free(buf);
605 return(r);
608 /* signature verification */
609 static int RSA_eay_public_decrypt(int flen, const unsigned char *from,
610 unsigned char *to, RSA *rsa, int padding)
612 BIGNUM *f,*ret;
613 int i,num=0,r= -1;
614 unsigned char *p;
615 unsigned char *buf=NULL;
616 BN_CTX *ctx=NULL;
618 if (BN_num_bits(rsa->n) > OPENSSL_RSA_MAX_MODULUS_BITS)
620 RSAerr(RSA_F_RSA_EAY_PUBLIC_DECRYPT, RSA_R_MODULUS_TOO_LARGE);
621 return -1;
624 if (BN_ucmp(rsa->n, rsa->e) <= 0)
626 RSAerr(RSA_F_RSA_EAY_PUBLIC_DECRYPT, RSA_R_BAD_E_VALUE);
627 return -1;
630 /* for large moduli, enforce exponent limit */
631 if (BN_num_bits(rsa->n) > OPENSSL_RSA_SMALL_MODULUS_BITS)
633 if (BN_num_bits(rsa->e) > OPENSSL_RSA_MAX_PUBEXP_BITS)
635 RSAerr(RSA_F_RSA_EAY_PUBLIC_DECRYPT, RSA_R_BAD_E_VALUE);
636 return -1;
640 if((ctx = BN_CTX_new()) == NULL) goto err;
641 BN_CTX_start(ctx);
642 f = BN_CTX_get(ctx);
643 ret = BN_CTX_get(ctx);
644 num=BN_num_bytes(rsa->n);
645 buf = OPENSSL_malloc(num);
646 if(!f || !ret || !buf)
648 RSAerr(RSA_F_RSA_EAY_PUBLIC_DECRYPT,ERR_R_MALLOC_FAILURE);
649 goto err;
652 /* This check was for equality but PGP does evil things
653 * and chops off the top '0' bytes */
654 if (flen > num)
656 RSAerr(RSA_F_RSA_EAY_PUBLIC_DECRYPT,RSA_R_DATA_GREATER_THAN_MOD_LEN);
657 goto err;
660 if (BN_bin2bn(from,flen,f) == NULL) goto err;
662 if (BN_ucmp(f, rsa->n) >= 0)
664 RSAerr(RSA_F_RSA_EAY_PUBLIC_DECRYPT,RSA_R_DATA_TOO_LARGE_FOR_MODULUS);
665 goto err;
668 if (rsa->flags & RSA_FLAG_CACHE_PUBLIC)
669 if (!BN_MONT_CTX_set_locked(&rsa->_method_mod_n, CRYPTO_LOCK_RSA, rsa->n, ctx))
670 goto err;
672 if (!rsa->meth->bn_mod_exp(ret,f,rsa->e,rsa->n,ctx,
673 rsa->_method_mod_n)) goto err;
675 if ((padding == RSA_X931_PADDING) && ((ret->d[0] & 0xf) != 12))
676 BN_sub(ret, rsa->n, ret);
678 p=buf;
679 i=BN_bn2bin(ret,p);
681 switch (padding)
683 case RSA_PKCS1_PADDING:
684 r=RSA_padding_check_PKCS1_type_1(to,num,buf,i,num);
685 break;
686 case RSA_X931_PADDING:
687 r=RSA_padding_check_X931(to,num,buf,i,num);
688 break;
689 case RSA_NO_PADDING:
690 r=RSA_padding_check_none(to,num,buf,i,num);
691 break;
692 default:
693 RSAerr(RSA_F_RSA_EAY_PUBLIC_DECRYPT,RSA_R_UNKNOWN_PADDING_TYPE);
694 goto err;
696 if (r < 0)
697 RSAerr(RSA_F_RSA_EAY_PUBLIC_DECRYPT,RSA_R_PADDING_CHECK_FAILED);
699 err:
700 if (ctx != NULL)
702 BN_CTX_end(ctx);
703 BN_CTX_free(ctx);
705 if (buf != NULL)
707 OPENSSL_cleanse(buf,num);
708 OPENSSL_free(buf);
710 return(r);
713 static int RSA_eay_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx)
715 BIGNUM *r1,*m1,*vrfy;
716 BIGNUM local_dmp1,local_dmq1,local_c,local_r1;
717 BIGNUM *dmp1,*dmq1,*c,*pr1;
718 int ret=0;
720 BN_CTX_start(ctx);
721 r1 = BN_CTX_get(ctx);
722 m1 = BN_CTX_get(ctx);
723 vrfy = BN_CTX_get(ctx);
726 BIGNUM local_p, local_q;
727 BIGNUM *p = NULL, *q = NULL;
729 /* Make sure BN_mod_inverse in Montgomery intialization uses the
730 * BN_FLG_CONSTTIME flag (unless RSA_FLAG_NO_CONSTTIME is set)
732 if (!(rsa->flags & RSA_FLAG_NO_CONSTTIME))
734 BN_init(&local_p);
735 p = &local_p;
736 BN_with_flags(p, rsa->p, BN_FLG_CONSTTIME);
738 BN_init(&local_q);
739 q = &local_q;
740 BN_with_flags(q, rsa->q, BN_FLG_CONSTTIME);
742 else
744 p = rsa->p;
745 q = rsa->q;
748 if (rsa->flags & RSA_FLAG_CACHE_PRIVATE)
750 if (!BN_MONT_CTX_set_locked(&rsa->_method_mod_p, CRYPTO_LOCK_RSA, p, ctx))
751 goto err;
752 if (!BN_MONT_CTX_set_locked(&rsa->_method_mod_q, CRYPTO_LOCK_RSA, q, ctx))
753 goto err;
757 if (rsa->flags & RSA_FLAG_CACHE_PUBLIC)
758 if (!BN_MONT_CTX_set_locked(&rsa->_method_mod_n, CRYPTO_LOCK_RSA, rsa->n, ctx))
759 goto err;
761 /* compute I mod q */
762 if (!(rsa->flags & RSA_FLAG_NO_CONSTTIME))
764 c = &local_c;
765 BN_with_flags(c, I, BN_FLG_CONSTTIME);
766 if (!BN_mod(r1,c,rsa->q,ctx)) goto err;
768 else
770 if (!BN_mod(r1,I,rsa->q,ctx)) goto err;
773 /* compute r1^dmq1 mod q */
774 if (!(rsa->flags & RSA_FLAG_NO_CONSTTIME))
776 dmq1 = &local_dmq1;
777 BN_with_flags(dmq1, rsa->dmq1, BN_FLG_CONSTTIME);
779 else
780 dmq1 = rsa->dmq1;
781 if (!rsa->meth->bn_mod_exp(m1,r1,dmq1,rsa->q,ctx,
782 rsa->_method_mod_q)) goto err;
784 /* compute I mod p */
785 if (!(rsa->flags & RSA_FLAG_NO_CONSTTIME))
787 c = &local_c;
788 BN_with_flags(c, I, BN_FLG_CONSTTIME);
789 if (!BN_mod(r1,c,rsa->p,ctx)) goto err;
791 else
793 if (!BN_mod(r1,I,rsa->p,ctx)) goto err;
796 /* compute r1^dmp1 mod p */
797 if (!(rsa->flags & RSA_FLAG_NO_CONSTTIME))
799 dmp1 = &local_dmp1;
800 BN_with_flags(dmp1, rsa->dmp1, BN_FLG_CONSTTIME);
802 else
803 dmp1 = rsa->dmp1;
804 if (!rsa->meth->bn_mod_exp(r0,r1,dmp1,rsa->p,ctx,
805 rsa->_method_mod_p)) goto err;
807 if (!BN_sub(r0,r0,m1)) goto err;
808 /* This will help stop the size of r0 increasing, which does
809 * affect the multiply if it optimised for a power of 2 size */
810 if (BN_is_negative(r0))
811 if (!BN_add(r0,r0,rsa->p)) goto err;
813 if (!BN_mul(r1,r0,rsa->iqmp,ctx)) goto err;
815 /* Turn BN_FLG_CONSTTIME flag on before division operation */
816 if (!(rsa->flags & RSA_FLAG_NO_CONSTTIME))
818 pr1 = &local_r1;
819 BN_with_flags(pr1, r1, BN_FLG_CONSTTIME);
821 else
822 pr1 = r1;
823 if (!BN_mod(r0,pr1,rsa->p,ctx)) goto err;
825 /* If p < q it is occasionally possible for the correction of
826 * adding 'p' if r0 is negative above to leave the result still
827 * negative. This can break the private key operations: the following
828 * second correction should *always* correct this rare occurrence.
829 * This will *never* happen with OpenSSL generated keys because
830 * they ensure p > q [steve]
832 if (BN_is_negative(r0))
833 if (!BN_add(r0,r0,rsa->p)) goto err;
834 if (!BN_mul(r1,r0,rsa->q,ctx)) goto err;
835 if (!BN_add(r0,r1,m1)) goto err;
837 if (rsa->e && rsa->n)
839 if (!rsa->meth->bn_mod_exp(vrfy,r0,rsa->e,rsa->n,ctx,rsa->_method_mod_n)) goto err;
840 /* If 'I' was greater than (or equal to) rsa->n, the operation
841 * will be equivalent to using 'I mod n'. However, the result of
842 * the verify will *always* be less than 'n' so we don't check
843 * for absolute equality, just congruency. */
844 if (!BN_sub(vrfy, vrfy, I)) goto err;
845 if (!BN_mod(vrfy, vrfy, rsa->n, ctx)) goto err;
846 if (BN_is_negative(vrfy))
847 if (!BN_add(vrfy, vrfy, rsa->n)) goto err;
848 if (!BN_is_zero(vrfy))
850 /* 'I' and 'vrfy' aren't congruent mod n. Don't leak
851 * miscalculated CRT output, just do a raw (slower)
852 * mod_exp and return that instead. */
854 BIGNUM local_d;
855 BIGNUM *d = NULL;
857 if (!(rsa->flags & RSA_FLAG_NO_CONSTTIME))
859 d = &local_d;
860 BN_with_flags(d, rsa->d, BN_FLG_CONSTTIME);
862 else
863 d = rsa->d;
864 if (!rsa->meth->bn_mod_exp(r0,I,d,rsa->n,ctx,
865 rsa->_method_mod_n)) goto err;
868 ret=1;
869 err:
870 BN_CTX_end(ctx);
871 return(ret);
874 static int RSA_eay_init(RSA *rsa)
876 rsa->flags|=RSA_FLAG_CACHE_PUBLIC|RSA_FLAG_CACHE_PRIVATE;
877 return(1);
880 static int RSA_eay_finish(RSA *rsa)
882 if (rsa->_method_mod_n != NULL)
883 BN_MONT_CTX_free(rsa->_method_mod_n);
884 if (rsa->_method_mod_p != NULL)
885 BN_MONT_CTX_free(rsa->_method_mod_p);
886 if (rsa->_method_mod_q != NULL)
887 BN_MONT_CTX_free(rsa->_method_mod_q);
888 return(1);
891 #endif