Config code updates.
[openssl.git] / apps / dsaparam.c
1 /* apps/dsaparam.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 #ifndef OPENSSL_NO_DSA
60 #include <assert.h>
61 #include <stdio.h>
62 #include <stdlib.h>
63 #include <time.h>
64 #include <string.h>
65 #include "apps.h"
66 #include <openssl/bio.h>
67 #include <openssl/err.h>
68 #include <openssl/bn.h>
69 #include <openssl/dsa.h>
70 #include <openssl/x509.h>
71 #include <openssl/pem.h>
72
73 #undef PROG
74 #define PROG    dsaparam_main
75
76 /* -inform arg  - input format - default PEM (DER or PEM)
77  * -outform arg - output format - default PEM
78  * -in arg      - input file - default stdin
79  * -out arg     - output file - default stdout
80  * -noout
81  * -text
82  * -C
83  * -noout
84  * -genkey
85  */
86
87 static void MS_CALLBACK dsa_cb(int p, int n, void *arg);
88
89 int MAIN(int, char **);
90
91 int MAIN(int argc, char **argv)
92         {
93         ENGINE *e = NULL;
94         DSA *dsa=NULL;
95         int i,badops=0,text=0;
96         BIO *in=NULL,*out=NULL;
97         int informat,outformat,noout=0,C=0,ret=1;
98         char *infile,*outfile,*prog,*inrand=NULL;
99         int numbits= -1,num,genkey=0;
100         int need_rand=0;
101         char *engine=NULL;
102
103         apps_startup();
104
105         if (bio_err == NULL)
106                 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
107                         BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
108
109         if (!load_config(bio_err, NULL))
110                 goto end;
111
112         infile=NULL;
113         outfile=NULL;
114         informat=FORMAT_PEM;
115         outformat=FORMAT_PEM;
116
117         prog=argv[0];
118         argc--;
119         argv++;
120         while (argc >= 1)
121                 {
122                 if      (strcmp(*argv,"-inform") == 0)
123                         {
124                         if (--argc < 1) goto bad;
125                         informat=str2fmt(*(++argv));
126                         }
127                 else if (strcmp(*argv,"-outform") == 0)
128                         {
129                         if (--argc < 1) goto bad;
130                         outformat=str2fmt(*(++argv));
131                         }
132                 else if (strcmp(*argv,"-in") == 0)
133                         {
134                         if (--argc < 1) goto bad;
135                         infile= *(++argv);
136                         }
137                 else if (strcmp(*argv,"-out") == 0)
138                         {
139                         if (--argc < 1) goto bad;
140                         outfile= *(++argv);
141                         }
142                 else if(strcmp(*argv, "-engine") == 0)
143                         {
144                         if (--argc < 1) goto bad;
145                         engine = *(++argv);
146                         }
147                 else if (strcmp(*argv,"-text") == 0)
148                         text=1;
149                 else if (strcmp(*argv,"-C") == 0)
150                         C=1;
151                 else if (strcmp(*argv,"-genkey") == 0)
152                         {
153                         genkey=1;
154                         need_rand=1;
155                         }
156                 else if (strcmp(*argv,"-rand") == 0)
157                         {
158                         if (--argc < 1) goto bad;
159                         inrand= *(++argv);
160                         need_rand=1;
161                         }
162                 else if (strcmp(*argv,"-noout") == 0)
163                         noout=1;
164                 else if (sscanf(*argv,"%d",&num) == 1)
165                         {
166                         /* generate a key */
167                         numbits=num;
168                         need_rand=1;
169                         }
170                 else
171                         {
172                         BIO_printf(bio_err,"unknown option %s\n",*argv);
173                         badops=1;
174                         break;
175                         }
176                 argc--;
177                 argv++;
178                 }
179
180         if (badops)
181                 {
182 bad:
183                 BIO_printf(bio_err,"%s [options] [bits] <infile >outfile\n",prog);
184                 BIO_printf(bio_err,"where options are\n");
185                 BIO_printf(bio_err," -inform arg   input format - DER or PEM\n");
186                 BIO_printf(bio_err," -outform arg  output format - DER or PEM\n");
187                 BIO_printf(bio_err," -in arg       input file\n");
188                 BIO_printf(bio_err," -out arg      output file\n");
189                 BIO_printf(bio_err," -text         print the key in text\n");
190                 BIO_printf(bio_err," -C            Output C code\n");
191                 BIO_printf(bio_err," -noout        no output\n");
192                 BIO_printf(bio_err," -rand         files to use for random number input\n");
193                 BIO_printf(bio_err," -engine e     use engine e, possibly a hardware device.\n");
194                 BIO_printf(bio_err," number        number of bits to use for generating private key\n");
195                 goto end;
196                 }
197
198         ERR_load_crypto_strings();
199
200         in=BIO_new(BIO_s_file());
201         out=BIO_new(BIO_s_file());
202         if ((in == NULL) || (out == NULL))
203                 {
204                 ERR_print_errors(bio_err);
205                 goto end;
206                 }
207
208         if (infile == NULL)
209                 BIO_set_fp(in,stdin,BIO_NOCLOSE);
210         else
211                 {
212                 if (BIO_read_filename(in,infile) <= 0)
213                         {
214                         perror(infile);
215                         goto end;
216                         }
217                 }
218         if (outfile == NULL)
219                 {
220                 BIO_set_fp(out,stdout,BIO_NOCLOSE);
221 #ifdef OPENSSL_SYS_VMS
222                 {
223                 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
224                 out = BIO_push(tmpbio, out);
225                 }
226 #endif
227                 }
228         else
229                 {
230                 if (BIO_write_filename(out,outfile) <= 0)
231                         {
232                         perror(outfile);
233                         goto end;
234                         }
235                 }
236
237         e = setup_engine(bio_err, engine, 0);
238
239         if (need_rand)
240                 {
241                 app_RAND_load_file(NULL, bio_err, (inrand != NULL));
242                 if (inrand != NULL)
243                         BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
244                                 app_RAND_load_files(inrand));
245                 }
246
247         if (numbits > 0)
248                 {
249                 assert(need_rand);
250                 BIO_printf(bio_err,"Generating DSA parameters, %d bit long prime\n",num);
251                 BIO_printf(bio_err,"This could take some time\n");
252                 dsa=DSA_generate_parameters(num,NULL,0,NULL,NULL, dsa_cb,bio_err);
253                 }
254         else if (informat == FORMAT_ASN1)
255                 dsa=d2i_DSAparams_bio(in,NULL);
256         else if (informat == FORMAT_PEM)
257                 dsa=PEM_read_bio_DSAparams(in,NULL,NULL,NULL);
258         else
259                 {
260                 BIO_printf(bio_err,"bad input format specified\n");
261                 goto end;
262                 }
263         if (dsa == NULL)
264                 {
265                 BIO_printf(bio_err,"unable to load DSA parameters\n");
266                 ERR_print_errors(bio_err);
267                 goto end;
268                 }
269
270         if (text)
271                 {
272                 DSAparams_print(out,dsa);
273                 }
274         
275         if (C)
276                 {
277                 unsigned char *data;
278                 int l,len,bits_p,bits_q,bits_g;
279
280                 len=BN_num_bytes(dsa->p);
281                 bits_p=BN_num_bits(dsa->p);
282                 bits_q=BN_num_bits(dsa->q);
283                 bits_g=BN_num_bits(dsa->g);
284                 data=(unsigned char *)OPENSSL_malloc(len+20);
285                 if (data == NULL)
286                         {
287                         perror("OPENSSL_malloc");
288                         goto end;
289                         }
290                 l=BN_bn2bin(dsa->p,data);
291                 printf("static unsigned char dsa%d_p[]={",bits_p);
292                 for (i=0; i<l; i++)
293                         {
294                         if ((i%12) == 0) printf("\n\t");
295                         printf("0x%02X,",data[i]);
296                         }
297                 printf("\n\t};\n");
298
299                 l=BN_bn2bin(dsa->q,data);
300                 printf("static unsigned char dsa%d_q[]={",bits_p);
301                 for (i=0; i<l; i++)
302                         {
303                         if ((i%12) == 0) printf("\n\t");
304                         printf("0x%02X,",data[i]);
305                         }
306                 printf("\n\t};\n");
307
308                 l=BN_bn2bin(dsa->g,data);
309                 printf("static unsigned char dsa%d_g[]={",bits_p);
310                 for (i=0; i<l; i++)
311                         {
312                         if ((i%12) == 0) printf("\n\t");
313                         printf("0x%02X,",data[i]);
314                         }
315                 printf("\n\t};\n\n");
316
317                 printf("DSA *get_dsa%d()\n\t{\n",bits_p);
318                 printf("\tDSA *dsa;\n\n");
319                 printf("\tif ((dsa=DSA_new()) == NULL) return(NULL);\n");
320                 printf("\tdsa->p=BN_bin2bn(dsa%d_p,sizeof(dsa%d_p),NULL);\n",
321                         bits_p,bits_p);
322                 printf("\tdsa->q=BN_bin2bn(dsa%d_q,sizeof(dsa%d_q),NULL);\n",
323                         bits_p,bits_p);
324                 printf("\tdsa->g=BN_bin2bn(dsa%d_g,sizeof(dsa%d_g),NULL);\n",
325                         bits_p,bits_p);
326                 printf("\tif ((dsa->p == NULL) || (dsa->q == NULL) || (dsa->g == NULL))\n");
327                 printf("\t\t{ DSA_free(dsa); return(NULL); }\n");
328                 printf("\treturn(dsa);\n\t}\n");
329                 }
330
331
332         if (!noout)
333                 {
334                 if      (outformat == FORMAT_ASN1)
335                         i=i2d_DSAparams_bio(out,dsa);
336                 else if (outformat == FORMAT_PEM)
337                         i=PEM_write_bio_DSAparams(out,dsa);
338                 else    {
339                         BIO_printf(bio_err,"bad output format specified for outfile\n");
340                         goto end;
341                         }
342                 if (!i)
343                         {
344                         BIO_printf(bio_err,"unable to write DSA parameters\n");
345                         ERR_print_errors(bio_err);
346                         goto end;
347                         }
348                 }
349         if (genkey)
350                 {
351                 DSA *dsakey;
352
353                 assert(need_rand);
354                 if ((dsakey=DSAparams_dup(dsa)) == NULL) goto end;
355                 if (!DSA_generate_key(dsakey)) goto end;
356                 if      (outformat == FORMAT_ASN1)
357                         i=i2d_DSAPrivateKey_bio(out,dsakey);
358                 else if (outformat == FORMAT_PEM)
359                         i=PEM_write_bio_DSAPrivateKey(out,dsakey,NULL,NULL,0,NULL,NULL);
360                 else    {
361                         BIO_printf(bio_err,"bad output format specified for outfile\n");
362                         goto end;
363                         }
364                 DSA_free(dsakey);
365                 }
366         if (need_rand)
367                 app_RAND_write_file(NULL, bio_err);
368         ret=0;
369 end:
370         if (in != NULL) BIO_free(in);
371         if (out != NULL) BIO_free_all(out);
372         if (dsa != NULL) DSA_free(dsa);
373         apps_shutdown();
374         EXIT(ret);
375         }
376
377 static void MS_CALLBACK dsa_cb(int p, int n, void *arg)
378         {
379         char c='*';
380
381         if (p == 0) c='.';
382         if (p == 1) c='+';
383         if (p == 2) c='*';
384         if (p == 3) c='\n';
385         BIO_write(arg,&c,1);
386         (void)BIO_flush(arg);
387 #ifdef LINT
388         p=n;
389 #endif
390         }
391 #endif