f83bafc7f1ab54682cd5ef0c23fa743babf6690d
[openssl.git] / apps / genrsa.c
1 /* apps/genrsa.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
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).
15  * 
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.
22  * 
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)"
40  * 
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.
52  * 
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.]
57  */
58
59 #include <stdio.h>
60 #include <string.h>
61 #include <sys/types.h>
62 #include <sys/stat.h>
63 #include "apps.h"
64 #include "bio.h"
65 #include "rand.h"
66 #include "err.h"
67 #include "bn.h"
68 #include "rsa.h"
69 #include "evp.h"
70 #include "x509.h"
71 #include "pem.h"
72
73 #define DEFBITS 512
74 #undef PROG
75 #define PROG genrsa_main
76
77 #ifndef NOPROTO
78 static void MS_CALLBACK genrsa_cb(int p, int n, char *arg);
79 static long gr_load_rand(char *names);
80 #else
81 static void MS_CALLBACK genrsa_cb();
82 static long gr_load_rand();
83 #endif
84
85 int MAIN(int argc, char **argv)
86         {
87         int ret=1;
88         char buffer[200];
89         RSA *rsa=NULL;
90         int i,num=DEFBITS;
91         long rnum=0,l;
92         EVP_CIPHER *enc=NULL;
93         unsigned long f4=RSA_F4;
94         char *outfile=NULL;
95         char *inrand=NULL,*randfile;
96         BIO *out=NULL;
97
98         apps_startup();
99
100         if (bio_err == NULL)
101                 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
102                         BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
103         if ((out=BIO_new(BIO_s_file())) == NULL)
104                 {
105                 BIO_printf(bio_err,"unable to creat BIO for output\n");
106                 goto err;
107                 }
108
109         argv++;
110         argc--;
111         for (;;)
112                 {
113                 if (argc <= 0) break;
114                 if (strcmp(*argv,"-out") == 0)
115                         {
116                         if (--argc < 1) goto bad;
117                         outfile= *(++argv);
118                         }
119                 else if (strcmp(*argv,"-3") == 0)
120                         f4=3;
121                 else if (strcmp(*argv,"-F4") == 0)
122                         f4=RSA_F4;
123                 else if (strcmp(*argv,"-rand") == 0)
124                         {
125                         if (--argc < 1) goto bad;
126                         inrand= *(++argv);
127                         }
128 #ifndef NO_DES
129                 else if (strcmp(*argv,"-des") == 0)
130                         enc=EVP_des_cbc();
131                 else if (strcmp(*argv,"-des3") == 0)
132                         enc=EVP_des_ede3_cbc();
133 #endif
134 #ifndef NO_IDEA
135                 else if (strcmp(*argv,"-idea") == 0)
136                         enc=EVP_idea_cbc();
137 #endif
138                 else
139                         break;
140                 argv++;
141                 argc--;
142                 }
143         if ((argc >= 1) && ((sscanf(*argv,"%d",&num) == 0) || (num < 0)))
144                 {
145 bad:
146                 BIO_printf(bio_err,"usage: genrsa [args] [numbits]\n");
147                 BIO_printf(bio_err," -des      - encrypt the generated key with DES in cbc mode\n");
148                 BIO_printf(bio_err," -des3     - encrypt the generated key with DES in ede cbc mode (168 bit key)\n");
149 #ifndef NO_IDEA
150                 BIO_printf(bio_err," -idea     - encrypt the generated key with IDEA in cbc mode\n");
151 #endif
152                 BIO_printf(bio_err," -out file - output the key to 'file\n");
153                 BIO_printf(bio_err," -f4       - use F4 (0x10001) for the E value\n");
154                 BIO_printf(bio_err," -3        - use 3 for the E value\n");
155                 BIO_printf(bio_err," -rand file:file:...\n");
156                 BIO_printf(bio_err,"           - load the file (or the files in the directory) into\n");
157                 BIO_printf(bio_err,"             the random number generator\n");
158                 goto err;
159                 }
160                 
161         ERR_load_crypto_strings();
162         if (outfile == NULL)
163                 BIO_set_fp(out,stdout,BIO_NOCLOSE);
164         else
165                 {
166                 if (BIO_write_filename(out,outfile) <= 0)
167                         {
168                         perror(outfile);
169                         goto err;
170                         }
171                 }
172
173 #ifdef WINDOWS
174         BIO_printf(bio_err,"Loading 'screen' into random state -");
175         BIO_flush(bio_err);
176         RAND_screen();
177         BIO_printf(bio_err," done\n");
178 #endif
179         randfile=RAND_file_name(buffer,200);
180         if ((randfile == NULL) ||
181                  !(rnum=(long)RAND_load_file(randfile,1024L*1024L)))
182                 {
183                 BIO_printf(bio_err,"unable to load 'random state'\n");
184                 }
185
186         if (inrand == NULL)
187                 {
188                 if (rnum == 0)
189                         {
190                         BIO_printf(bio_err,"warning, not much extra random data, consider using the -rand option\n");
191                         }
192                 }
193         else
194                 {
195                 rnum+=gr_load_rand(inrand);
196                 }
197         if (rnum != 0)
198                 BIO_printf(bio_err,"%ld semi-random bytes loaded\n",rnum);
199
200         BIO_printf(bio_err,"Generating RSA private key, %d bit long modulus\n",
201                 num);
202         rsa=RSA_generate_key(num,f4,genrsa_cb,(char *)bio_err);
203                 
204         if (randfile == NULL)
205                 BIO_printf(bio_err,"unable to write 'random state'\n");
206         else
207                 RAND_write_file(randfile);
208
209         if (rsa == NULL) goto err;
210         
211         /* We need to do the folloing for when the base number size is <
212          * long, esp windows 3.1 :-(. */
213         l=0L;
214         for (i=0; i<rsa->e->top; i++)
215                 {
216 #ifndef SIXTY_FOUR_BIT
217                 l<<=BN_BITS4;
218                 l<<=BN_BITS4;
219 #endif
220                 l+=rsa->e->d[i];
221                 }
222         BIO_printf(bio_err,"e is %ld (0x%lX)\n",l,l);
223         if (!PEM_write_bio_RSAPrivateKey(out,rsa,enc,NULL,0,NULL))
224                 goto err;
225
226         ret=0;
227 err:
228         if (rsa != NULL) RSA_free(rsa);
229         if (out != NULL) BIO_free(out);
230         if (ret != 0)
231                 ERR_print_errors(bio_err);
232         EXIT(ret);
233         }
234
235 static void MS_CALLBACK genrsa_cb(int p, int n, char *arg)
236         {
237         char c='*';
238
239         if (p == 0) c='.';
240         if (p == 1) c='+';
241         if (p == 2) c='*';
242         if (p == 3) c='\n';
243         BIO_write((BIO *)arg,&c,1);
244         BIO_flush((BIO *)arg);
245 #ifdef LINT
246         p=n;
247 #endif
248         }
249
250 static long gr_load_rand(char *name)
251         {
252         char *p,*n;
253         int last;
254         long tot=0;
255
256         for (;;)
257                 {
258                 last=0;
259                 for (p=name; ((*p != '\0') && (*p != LIST_SEPARATOR_CHAR)); p++);
260                 if (*p == '\0') last=1;
261                 *p='\0';
262                 n=name;
263                 name=p+1;
264                 if (*n == '\0') break;
265
266                 tot+=RAND_load_file(n,1024L*1024L);
267                 if (last) break;
268                 }
269         return(tot);
270         }
271
272