10Sstevel@tonic-gate /* crypto/rsa/rsa_gen.c */
20Sstevel@tonic-gate /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
30Sstevel@tonic-gate * All rights reserved.
40Sstevel@tonic-gate *
50Sstevel@tonic-gate * This package is an SSL implementation written
60Sstevel@tonic-gate * by Eric Young (eay@cryptsoft.com).
70Sstevel@tonic-gate * The implementation was written so as to conform with Netscapes SSL.
80Sstevel@tonic-gate *
90Sstevel@tonic-gate * This library is free for commercial and non-commercial use as long as
100Sstevel@tonic-gate * the following conditions are aheared to. The following conditions
110Sstevel@tonic-gate * apply to all code found in this distribution, be it the RC4, RSA,
120Sstevel@tonic-gate * lhash, DES, etc., code; not just the SSL code. The SSL documentation
130Sstevel@tonic-gate * included with this distribution is covered by the same copyright terms
140Sstevel@tonic-gate * except that the holder is Tim Hudson (tjh@cryptsoft.com).
150Sstevel@tonic-gate *
160Sstevel@tonic-gate * Copyright remains Eric Young's, and as such any Copyright notices in
170Sstevel@tonic-gate * the code are not to be removed.
180Sstevel@tonic-gate * If this package is used in a product, Eric Young should be given attribution
190Sstevel@tonic-gate * as the author of the parts of the library used.
200Sstevel@tonic-gate * This can be in the form of a textual message at program startup or
210Sstevel@tonic-gate * in documentation (online or textual) provided with the package.
220Sstevel@tonic-gate *
230Sstevel@tonic-gate * Redistribution and use in source and binary forms, with or without
240Sstevel@tonic-gate * modification, are permitted provided that the following conditions
250Sstevel@tonic-gate * are met:
260Sstevel@tonic-gate * 1. Redistributions of source code must retain the copyright
270Sstevel@tonic-gate * notice, this list of conditions and the following disclaimer.
280Sstevel@tonic-gate * 2. Redistributions in binary form must reproduce the above copyright
290Sstevel@tonic-gate * notice, this list of conditions and the following disclaimer in the
300Sstevel@tonic-gate * documentation and/or other materials provided with the distribution.
310Sstevel@tonic-gate * 3. All advertising materials mentioning features or use of this software
320Sstevel@tonic-gate * must display the following acknowledgement:
330Sstevel@tonic-gate * "This product includes cryptographic software written by
340Sstevel@tonic-gate * Eric Young (eay@cryptsoft.com)"
350Sstevel@tonic-gate * The word 'cryptographic' can be left out if the rouines from the library
360Sstevel@tonic-gate * being used are not cryptographic related :-).
370Sstevel@tonic-gate * 4. If you include any Windows specific code (or a derivative thereof) from
380Sstevel@tonic-gate * the apps directory (application code) you must include an acknowledgement:
390Sstevel@tonic-gate * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
400Sstevel@tonic-gate *
410Sstevel@tonic-gate * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
420Sstevel@tonic-gate * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
430Sstevel@tonic-gate * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
440Sstevel@tonic-gate * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
450Sstevel@tonic-gate * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
460Sstevel@tonic-gate * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
470Sstevel@tonic-gate * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
480Sstevel@tonic-gate * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
490Sstevel@tonic-gate * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
500Sstevel@tonic-gate * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
510Sstevel@tonic-gate * SUCH DAMAGE.
520Sstevel@tonic-gate *
530Sstevel@tonic-gate * The licence and distribution terms for any publically available version or
540Sstevel@tonic-gate * derivative of this code cannot be changed. i.e. this code cannot simply be
550Sstevel@tonic-gate * copied and put under another distribution licence
560Sstevel@tonic-gate * [including the GNU Public Licence.]
570Sstevel@tonic-gate */
580Sstevel@tonic-gate
59*2139Sjp161948
60*2139Sjp161948 /* NB: these functions have been "upgraded", the deprecated versions (which are
61*2139Sjp161948 * compatibility wrappers using these functions) are in rsa_depr.c.
62*2139Sjp161948 * - Geoff
63*2139Sjp161948 */
64*2139Sjp161948
650Sstevel@tonic-gate #include <stdio.h>
660Sstevel@tonic-gate #include <time.h>
670Sstevel@tonic-gate #include "cryptlib.h"
680Sstevel@tonic-gate #include <openssl/bn.h>
690Sstevel@tonic-gate #include <openssl/rsa.h>
700Sstevel@tonic-gate
71*2139Sjp161948 static int rsa_builtin_keygen(RSA *rsa, int bits, BIGNUM *e_value, BN_GENCB *cb);
72*2139Sjp161948
73*2139Sjp161948 /* NB: this wrapper would normally be placed in rsa_lib.c and the static
74*2139Sjp161948 * implementation would probably be in rsa_eay.c. Nonetheless, is kept here so
75*2139Sjp161948 * that we don't introduce a new linker dependency. Eg. any application that
76*2139Sjp161948 * wasn't previously linking object code related to key-generation won't have to
77*2139Sjp161948 * now just because key-generation is part of RSA_METHOD. */
RSA_generate_key_ex(RSA * rsa,int bits,BIGNUM * e_value,BN_GENCB * cb)78*2139Sjp161948 int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e_value, BN_GENCB *cb)
790Sstevel@tonic-gate {
80*2139Sjp161948 if(rsa->meth->rsa_keygen)
81*2139Sjp161948 return rsa->meth->rsa_keygen(rsa, bits, e_value, cb);
82*2139Sjp161948 return rsa_builtin_keygen(rsa, bits, e_value, cb);
83*2139Sjp161948 }
84*2139Sjp161948
rsa_builtin_keygen(RSA * rsa,int bits,BIGNUM * e_value,BN_GENCB * cb)85*2139Sjp161948 static int rsa_builtin_keygen(RSA *rsa, int bits, BIGNUM *e_value, BN_GENCB *cb)
86*2139Sjp161948 {
870Sstevel@tonic-gate BIGNUM *r0=NULL,*r1=NULL,*r2=NULL,*r3=NULL,*tmp;
88*2139Sjp161948 int bitsp,bitsq,ok= -1,n=0;
89*2139Sjp161948 BN_CTX *ctx=NULL;
900Sstevel@tonic-gate
910Sstevel@tonic-gate ctx=BN_CTX_new();
920Sstevel@tonic-gate if (ctx == NULL) goto err;
930Sstevel@tonic-gate BN_CTX_start(ctx);
940Sstevel@tonic-gate r0 = BN_CTX_get(ctx);
950Sstevel@tonic-gate r1 = BN_CTX_get(ctx);
960Sstevel@tonic-gate r2 = BN_CTX_get(ctx);
970Sstevel@tonic-gate r3 = BN_CTX_get(ctx);
980Sstevel@tonic-gate if (r3 == NULL) goto err;
990Sstevel@tonic-gate
1000Sstevel@tonic-gate bitsp=(bits+1)/2;
1010Sstevel@tonic-gate bitsq=bits-bitsp;
1020Sstevel@tonic-gate
103*2139Sjp161948 /* We need the RSA components non-NULL */
104*2139Sjp161948 if(!rsa->n && ((rsa->n=BN_new()) == NULL)) goto err;
105*2139Sjp161948 if(!rsa->d && ((rsa->d=BN_new()) == NULL)) goto err;
106*2139Sjp161948 if(!rsa->e && ((rsa->e=BN_new()) == NULL)) goto err;
107*2139Sjp161948 if(!rsa->p && ((rsa->p=BN_new()) == NULL)) goto err;
108*2139Sjp161948 if(!rsa->q && ((rsa->q=BN_new()) == NULL)) goto err;
109*2139Sjp161948 if(!rsa->dmp1 && ((rsa->dmp1=BN_new()) == NULL)) goto err;
110*2139Sjp161948 if(!rsa->dmq1 && ((rsa->dmq1=BN_new()) == NULL)) goto err;
111*2139Sjp161948 if(!rsa->iqmp && ((rsa->iqmp=BN_new()) == NULL)) goto err;
112*2139Sjp161948
113*2139Sjp161948 BN_copy(rsa->e, e_value);
1140Sstevel@tonic-gate
1150Sstevel@tonic-gate /* generate p and q */
1160Sstevel@tonic-gate for (;;)
1170Sstevel@tonic-gate {
118*2139Sjp161948 if(!BN_generate_prime_ex(rsa->p, bitsp, 0, NULL, NULL, cb))
119*2139Sjp161948 goto err;
1200Sstevel@tonic-gate if (!BN_sub(r2,rsa->p,BN_value_one())) goto err;
1210Sstevel@tonic-gate if (!BN_gcd(r1,r2,rsa->e,ctx)) goto err;
1220Sstevel@tonic-gate if (BN_is_one(r1)) break;
123*2139Sjp161948 if(!BN_GENCB_call(cb, 2, n++))
124*2139Sjp161948 goto err;
1250Sstevel@tonic-gate }
126*2139Sjp161948 if(!BN_GENCB_call(cb, 3, 0))
127*2139Sjp161948 goto err;
1280Sstevel@tonic-gate for (;;)
1290Sstevel@tonic-gate {
130*2139Sjp161948 /* When generating ridiculously small keys, we can get stuck
131*2139Sjp161948 * continually regenerating the same prime values. Check for
132*2139Sjp161948 * this and bail if it happens 3 times. */
133*2139Sjp161948 unsigned int degenerate = 0;
134*2139Sjp161948 do
135*2139Sjp161948 {
136*2139Sjp161948 if(!BN_generate_prime_ex(rsa->q, bitsq, 0, NULL, NULL, cb))
137*2139Sjp161948 goto err;
138*2139Sjp161948 } while((BN_cmp(rsa->p, rsa->q) == 0) && (++degenerate < 3));
139*2139Sjp161948 if(degenerate == 3)
140*2139Sjp161948 {
141*2139Sjp161948 ok = 0; /* we set our own err */
142*2139Sjp161948 RSAerr(RSA_F_RSA_BUILTIN_KEYGEN,RSA_R_KEY_SIZE_TOO_SMALL);
143*2139Sjp161948 goto err;
144*2139Sjp161948 }
1450Sstevel@tonic-gate if (!BN_sub(r2,rsa->q,BN_value_one())) goto err;
1460Sstevel@tonic-gate if (!BN_gcd(r1,r2,rsa->e,ctx)) goto err;
147*2139Sjp161948 if (BN_is_one(r1))
1480Sstevel@tonic-gate break;
149*2139Sjp161948 if(!BN_GENCB_call(cb, 2, n++))
150*2139Sjp161948 goto err;
1510Sstevel@tonic-gate }
152*2139Sjp161948 if(!BN_GENCB_call(cb, 3, 1))
153*2139Sjp161948 goto err;
1540Sstevel@tonic-gate if (BN_cmp(rsa->p,rsa->q) < 0)
1550Sstevel@tonic-gate {
1560Sstevel@tonic-gate tmp=rsa->p;
1570Sstevel@tonic-gate rsa->p=rsa->q;
1580Sstevel@tonic-gate rsa->q=tmp;
1590Sstevel@tonic-gate }
1600Sstevel@tonic-gate
1610Sstevel@tonic-gate /* calculate n */
1620Sstevel@tonic-gate if (!BN_mul(rsa->n,rsa->p,rsa->q,ctx)) goto err;
1630Sstevel@tonic-gate
1640Sstevel@tonic-gate /* calculate d */
1650Sstevel@tonic-gate if (!BN_sub(r1,rsa->p,BN_value_one())) goto err; /* p-1 */
1660Sstevel@tonic-gate if (!BN_sub(r2,rsa->q,BN_value_one())) goto err; /* q-1 */
1670Sstevel@tonic-gate if (!BN_mul(r0,r1,r2,ctx)) goto err; /* (p-1)(q-1) */
168*2139Sjp161948 if (!BN_mod_inverse(rsa->d,rsa->e,r0,ctx)) goto err; /* d */
1690Sstevel@tonic-gate
1700Sstevel@tonic-gate /* calculate d mod (p-1) */
1710Sstevel@tonic-gate if (!BN_mod(rsa->dmp1,rsa->d,r1,ctx)) goto err;
1720Sstevel@tonic-gate
1730Sstevel@tonic-gate /* calculate d mod (q-1) */
1740Sstevel@tonic-gate if (!BN_mod(rsa->dmq1,rsa->d,r2,ctx)) goto err;
1750Sstevel@tonic-gate
1760Sstevel@tonic-gate /* calculate inverse of q mod p */
177*2139Sjp161948 if (!BN_mod_inverse(rsa->iqmp,rsa->q,rsa->p,ctx)) goto err;
1780Sstevel@tonic-gate
1790Sstevel@tonic-gate ok=1;
1800Sstevel@tonic-gate err:
1810Sstevel@tonic-gate if (ok == -1)
1820Sstevel@tonic-gate {
183*2139Sjp161948 RSAerr(RSA_F_RSA_BUILTIN_KEYGEN,ERR_LIB_BN);
1840Sstevel@tonic-gate ok=0;
1850Sstevel@tonic-gate }
1860Sstevel@tonic-gate BN_CTX_end(ctx);
1870Sstevel@tonic-gate BN_CTX_free(ctx);
188*2139Sjp161948
189*2139Sjp161948 return ok;
1900Sstevel@tonic-gate }
1910Sstevel@tonic-gate
192