blob: 69baa50b01151b0dc5b857ec122519fc77f1bb78 [file] [log] [blame]
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001/* apps/gendh.c */
Bodo Möller41918452000-03-03 22:18:19 +00002/* obsoleted by dhparam.c */
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00003/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00004 * All rights reserved.
5 *
6 * This package is an SSL implementation written
7 * by Eric Young (eay@cryptsoft.com).
8 * The implementation was written so as to conform with Netscapes SSL.
9 *
10 * This library is free for commercial and non-commercial use as long as
11 * the following conditions are aheared to. The following conditions
12 * apply to all code found in this distribution, be it the RC4, RSA,
13 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
14 * included with this distribution is covered by the same copyright terms
15 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
16 *
17 * Copyright remains Eric Young's, and as such any Copyright notices in
18 * the code are not to be removed.
19 * If this package is used in a product, Eric Young should be given attribution
20 * as the author of the parts of the library used.
21 * This can be in the form of a textual message at program startup or
22 * in documentation (online or textual) provided with the package.
23 *
24 * Redistribution and use in source and binary forms, with or without
25 * modification, are permitted provided that the following conditions
26 * are met:
27 * 1. Redistributions of source code must retain the copyright
28 * notice, this list of conditions and the following disclaimer.
29 * 2. Redistributions in binary form must reproduce the above copyright
30 * notice, this list of conditions and the following disclaimer in the
31 * documentation and/or other materials provided with the distribution.
32 * 3. All advertising materials mentioning features or use of this software
33 * must display the following acknowledgement:
34 * "This product includes cryptographic software written by
35 * Eric Young (eay@cryptsoft.com)"
36 * The word 'cryptographic' can be left out if the rouines from the library
37 * being used are not cryptographic related :-).
38 * 4. If you include any Windows specific code (or a derivative thereof) from
39 * the apps directory (application code) you must include an acknowledgement:
40 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
41 *
42 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
43 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
44 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
45 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
46 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
47 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
48 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
50 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
51 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
52 * SUCH DAMAGE.
53 *
54 * The licence and distribution terms for any publically available version or
55 * derivative of this code cannot be changed. i.e. this code cannot simply be
56 * copied and put under another distribution licence
57 * [including the GNU Public Licence.]
58 */
59
Geoff Thorpe5daec7e2002-12-08 05:38:44 +000060/* Until the key-gen callbacks are modified to use newer prototypes, we allow
61 * deprecated functions for openssl-internal code */
62#ifdef OPENSSL_NO_DEPRECATED
63#undef OPENSSL_NO_DEPRECATED
64#endif
65
Richard Levittecf1b7d92001-02-19 16:06:34 +000066#ifndef OPENSSL_NO_DH
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000067#include <stdio.h>
68#include <string.h>
69#include <sys/types.h>
70#include <sys/stat.h>
71#include "apps.h"
Bodo Möllerec577821999-04-23 22:13:45 +000072#include <openssl/bio.h>
73#include <openssl/rand.h>
74#include <openssl/err.h>
75#include <openssl/bn.h>
76#include <openssl/dh.h>
77#include <openssl/x509.h>
78#include <openssl/pem.h>
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000079
80#define DEFBITS 512
81#undef PROG
82#define PROG gendh_main
83
Geoff Thorpe2aaec9c2003-10-29 04:14:08 +000084static int MS_CALLBACK dh_cb(int p, int n, BN_GENCB *cb);
Ralf S. Engelschall667ac4e2000-02-11 09:47:18 +000085
86int MAIN(int, char **);
87
Ulf Möller6b691a51999-04-19 21:31:43 +000088int MAIN(int argc, char **argv)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000089 {
Geoff Thorpe2aaec9c2003-10-29 04:14:08 +000090 BN_GENCB cb;
Richard Levitte0b13e9f2003-01-30 17:39:26 +000091#ifndef OPENSSL_NO_ENGINE
Richard Levitte5270e702000-10-26 21:07:28 +000092 ENGINE *e = NULL;
Richard Levitte0b13e9f2003-01-30 17:39:26 +000093#endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000094 DH *dh=NULL;
95 int ret=1,num=DEFBITS;
96 int g=2;
97 char *outfile=NULL;
Richard Levittef3656112000-06-28 16:47:45 +000098 char *inrand=NULL;
Richard Levitte0b13e9f2003-01-30 17:39:26 +000099#ifndef OPENSSL_NO_ENGINE
Richard Levitte5270e702000-10-26 21:07:28 +0000100 char *engine=NULL;
Richard Levitte0b13e9f2003-01-30 17:39:26 +0000101#endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000102 BIO *out=NULL;
103
104 apps_startup();
105
Geoff Thorpe2aaec9c2003-10-29 04:14:08 +0000106 BN_GENCB_set(&cb, dh_cb, bio_err);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000107 if (bio_err == NULL)
108 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000109 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000110
Dr. Stephen Henson3647bee2002-02-22 14:01:21 +0000111 if (!load_config(bio_err, NULL))
112 goto end;
113
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000114 argv++;
115 argc--;
116 for (;;)
117 {
118 if (argc <= 0) break;
119 if (strcmp(*argv,"-out") == 0)
120 {
121 if (--argc < 1) goto bad;
122 outfile= *(++argv);
123 }
124 else if (strcmp(*argv,"-2") == 0)
125 g=2;
126 /* else if (strcmp(*argv,"-3") == 0)
127 g=3; */
128 else if (strcmp(*argv,"-5") == 0)
129 g=5;
Richard Levitte0b13e9f2003-01-30 17:39:26 +0000130#ifndef OPENSSL_NO_ENGINE
Richard Levitte5270e702000-10-26 21:07:28 +0000131 else if (strcmp(*argv,"-engine") == 0)
132 {
133 if (--argc < 1) goto bad;
134 engine= *(++argv);
135 }
Richard Levitte0b13e9f2003-01-30 17:39:26 +0000136#endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000137 else if (strcmp(*argv,"-rand") == 0)
138 {
139 if (--argc < 1) goto bad;
140 inrand= *(++argv);
141 }
142 else
143 break;
144 argv++;
145 argc--;
146 }
147 if ((argc >= 1) && ((sscanf(*argv,"%d",&num) == 0) || (num < 0)))
148 {
149bad:
150 BIO_printf(bio_err,"usage: gendh [args] [numbits]\n");
151 BIO_printf(bio_err," -out file - output the key to 'file\n");
Richard Levitte5270e702000-10-26 21:07:28 +0000152 BIO_printf(bio_err," -2 - use 2 as the generator value\n");
153 /* BIO_printf(bio_err," -3 - use 3 as the generator value\n"); */
154 BIO_printf(bio_err," -5 - use 5 as the generator value\n");
Richard Levitte0b13e9f2003-01-30 17:39:26 +0000155#ifndef OPENSSL_NO_ENGINE
Richard Levitte5270e702000-10-26 21:07:28 +0000156 BIO_printf(bio_err," -engine e - use engine e, possibly a hardware device.\n");
Richard Levitte0b13e9f2003-01-30 17:39:26 +0000157#endif
Bodo Möllerafbd0742000-03-01 11:45:53 +0000158 BIO_printf(bio_err," -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000159 BIO_printf(bio_err," - load the file (or the files in the directory) into\n");
160 BIO_printf(bio_err," the random number generator\n");
161 goto end;
162 }
163
Richard Levitte0b13e9f2003-01-30 17:39:26 +0000164#ifndef OPENSSL_NO_ENGINE
Richard Levitte531d6302001-06-18 06:22:33 +0000165 e = setup_engine(bio_err, engine, 0);
Richard Levitte0b13e9f2003-01-30 17:39:26 +0000166#endif
Richard Levitte5270e702000-10-26 21:07:28 +0000167
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000168 out=BIO_new(BIO_s_file());
169 if (out == NULL)
170 {
171 ERR_print_errors(bio_err);
172 goto end;
173 }
174
175 if (outfile == NULL)
Richard Levitte645749e2000-09-20 13:55:50 +0000176 {
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000177 BIO_set_fp(out,stdout,BIO_NOCLOSE);
Richard Levittebc36ee62001-02-20 08:13:47 +0000178#ifdef OPENSSL_SYS_VMS
Richard Levitte645749e2000-09-20 13:55:50 +0000179 {
180 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
181 out = BIO_push(tmpbio, out);
182 }
183#endif
184 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000185 else
186 {
187 if (BIO_write_filename(out,outfile) <= 0)
188 {
189 perror(outfile);
190 goto end;
191 }
192 }
193
Richard Levittef3656112000-06-28 16:47:45 +0000194 if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000195 {
Bodo Möllera31011e1999-10-26 01:56:29 +0000196 BIO_printf(bio_err,"warning, not much extra random data, consider using the -rand option\n");
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000197 }
Bodo Möllera31011e1999-10-26 01:56:29 +0000198 if (inrand != NULL)
199 BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
200 app_RAND_load_files(inrand));
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000201
Bodo Möller41918452000-03-03 22:18:19 +0000202 BIO_printf(bio_err,"Generating DH parameters, %d bit long safe prime, generator %d\n",num,g);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000203 BIO_printf(bio_err,"This is going to take a long time\n");
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000204
Geoff Thorpe2aaec9c2003-10-29 04:14:08 +0000205 if(((dh = DH_new()) == NULL) || !DH_generate_parameters_ex(dh, num, g, &cb))
206 goto end;
207
Bodo Möllera31011e1999-10-26 01:56:29 +0000208 app_RAND_write_file(NULL, bio_err);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000209
210 if (!PEM_write_bio_DHparams(out,dh))
211 goto end;
212 ret=0;
213end:
214 if (ret != 0)
215 ERR_print_errors(bio_err);
Richard Levitte645749e2000-09-20 13:55:50 +0000216 if (out != NULL) BIO_free_all(out);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000217 if (dh != NULL) DH_free(dh);
Richard Levittec04f8cf2001-06-23 16:37:32 +0000218 apps_shutdown();
Richard Levitte1c3e4a32002-12-03 16:33:03 +0000219 OPENSSL_EXIT(ret);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000220 }
221
Geoff Thorpe2aaec9c2003-10-29 04:14:08 +0000222static int MS_CALLBACK dh_cb(int p, int n, BN_GENCB *cb)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000223 {
224 char c='*';
225
226 if (p == 0) c='.';
227 if (p == 1) c='+';
228 if (p == 2) c='*';
229 if (p == 3) c='\n';
Geoff Thorpe2aaec9c2003-10-29 04:14:08 +0000230 BIO_write(cb->arg,&c,1);
231 (void)BIO_flush(cb->arg);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000232#ifdef LINT
233 p=n;
234#endif
Geoff Thorpe2aaec9c2003-10-29 04:14:08 +0000235 return 1;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000236 }
Ulf Möllerf5d7a031999-04-27 01:14:46 +0000237#endif