b9843cfef7b078770cafe773cb99886ca5199ea4
[openssl.git] / apps / genpkey.c
1 /*
2  * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
3  * 2006
4  */
5 /* ====================================================================
6  * Copyright (c) 2006 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    licensing@OpenSSL.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  *
53  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com).
56  *
57  */
58 #include <stdio.h>
59 #include <string.h>
60 #include "apps.h"
61 #include <openssl/pem.h>
62 #include <openssl/err.h>
63 #include <openssl/evp.h>
64 #ifndef OPENSSL_NO_ENGINE
65 # include <openssl/engine.h>
66 #endif
67
68 static int init_keygen_file(EVP_PKEY_CTX **pctx, const char *file, ENGINE *e);
69 static int genpkey_cb(EVP_PKEY_CTX *ctx);
70
71 typedef enum OPTION_choice {
72     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
73     OPT_ENGINE, OPT_OUTFORM, OPT_OUT, OPT_PASS, OPT_PARAMFILE,
74     OPT_ALGORITHM, OPT_PKEYOPT, OPT_GENPARAM, OPT_TEXT, OPT_CIPHER
75 } OPTION_CHOICE;
76
77 OPTIONS genpkey_options[] = {
78     {"help", OPT_HELP, '-', "Display this summary"},
79     {"out", OPT_OUT, '>', "Output file"},
80     {"outform", OPT_OUTFORM, 'F', "output format (DER or PEM)"},
81     {"pass", OPT_PASS, 's', "Output file pass phrase source"},
82     {"paramfile", OPT_PARAMFILE, '<', "Parameters file"},
83     {"algorithm", OPT_ALGORITHM, 's', "The public key algorithm"},
84     {"pkeyopt", OPT_PKEYOPT, 's',
85      "Set the public key algorithm option as opt:value"},
86     {"genparam", OPT_GENPARAM, '-', "Generate parameters, not key"},
87     {"text", OPT_TEXT, '-', "Print the in text"},
88     {"", OPT_CIPHER, '-', "Cipher to use to encrypt the key"},
89 #ifndef OPENSSL_NO_ENGINE
90     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
91 #endif
92     {OPT_HELP_STR, 1, 1,
93      "Order of options may be important!  See the documentation.\n"},
94     {NULL}
95 };
96
97 int genpkey_main(int argc, char **argv)
98 {
99     BIO *in = NULL, *out = NULL;
100     ENGINE *e = NULL;
101     EVP_PKEY *pkey = NULL;
102     EVP_PKEY_CTX *ctx = NULL;
103     char *outfile = NULL, *passarg = NULL, *pass = NULL, *prog;
104     const EVP_CIPHER *cipher = NULL;
105     OPTION_CHOICE o;
106     int outformat = FORMAT_PEM, text = 0, ret = 1, rv, do_param = 0;
107
108     prog = opt_init(argc, argv, genpkey_options);
109     while ((o = opt_next()) != OPT_EOF) {
110         switch (o) {
111         case OPT_EOF:
112         case OPT_ERR:
113  opthelp:
114             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
115             goto end;
116         case OPT_HELP:
117             ret = 0;
118             opt_help(genpkey_options);
119             goto end;
120         case OPT_OUTFORM:
121             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &outformat))
122                 goto opthelp;
123             break;
124         case OPT_OUT:
125             outfile = opt_arg();
126             break;
127
128         case OPT_PASS:
129             passarg = opt_arg();
130             break;
131         case OPT_ENGINE:
132             e = setup_engine(opt_arg(), 0);
133             break;
134         case OPT_PARAMFILE:
135             if (do_param == 1)
136                 goto opthelp;
137             if (!init_keygen_file(&ctx, opt_arg(), e))
138                 goto end;
139             break;
140         case OPT_ALGORITHM:
141             if (!init_gen_str(&ctx, opt_arg(), e, do_param))
142                 goto end;
143             break;
144         case OPT_PKEYOPT:
145             if (ctx == NULL) {
146                 BIO_printf(bio_err, "%s: No keytype specified.\n", prog);
147                 goto opthelp;
148             }
149             if (pkey_ctrl_string(ctx, opt_arg()) <= 0) {
150                 BIO_printf(bio_err,
151                            "%s: Error setting %s parameter:\n",
152                            prog, opt_arg());
153                 ERR_print_errors(bio_err);
154                 goto end;
155             }
156             break;
157         case OPT_GENPARAM:
158             if (ctx != NULL)
159                 goto opthelp;
160             do_param = 1;
161             break;
162         case OPT_TEXT:
163             text = 1;
164             break;
165         case OPT_CIPHER:
166             if (!opt_cipher(opt_unknown(), &cipher)
167                 || do_param == 1)
168                 goto opthelp;
169         }
170     }
171     argc = opt_num_rest();
172     argv = opt_rest();
173
174     if (ctx == NULL)
175         goto opthelp;
176
177     if (!app_passwd(passarg, NULL, &pass, NULL)) {
178         BIO_puts(bio_err, "Error getting password\n");
179         goto end;
180     }
181
182     if (!app_load_modules(NULL))
183         goto end;
184
185     out = bio_open_default(outfile, "wb");
186     if (out == NULL)
187         goto end;
188
189     EVP_PKEY_CTX_set_cb(ctx, genpkey_cb);
190     EVP_PKEY_CTX_set_app_data(ctx, bio_err);
191
192     if (do_param) {
193         if (EVP_PKEY_paramgen(ctx, &pkey) <= 0) {
194             BIO_puts(bio_err, "Error generating parameters\n");
195             ERR_print_errors(bio_err);
196             goto end;
197         }
198     } else {
199         if (EVP_PKEY_keygen(ctx, &pkey) <= 0) {
200             BIO_puts(bio_err, "Error generating key\n");
201             ERR_print_errors(bio_err);
202             goto end;
203         }
204     }
205
206     if (do_param)
207         rv = PEM_write_bio_Parameters(out, pkey);
208     else if (outformat == FORMAT_PEM)
209         rv = PEM_write_bio_PrivateKey(out, pkey, cipher, NULL, 0, NULL, pass);
210     else if (outformat == FORMAT_ASN1)
211         rv = i2d_PrivateKey_bio(out, pkey);
212     else {
213         BIO_printf(bio_err, "Bad format specified for key\n");
214         goto end;
215     }
216
217     if (rv <= 0) {
218         BIO_puts(bio_err, "Error writing key\n");
219         ERR_print_errors(bio_err);
220     }
221
222     if (text) {
223         if (do_param)
224             rv = EVP_PKEY_print_params(out, pkey, 0, NULL);
225         else
226             rv = EVP_PKEY_print_private(out, pkey, 0, NULL);
227
228         if (rv <= 0) {
229             BIO_puts(bio_err, "Error printing key\n");
230             ERR_print_errors(bio_err);
231         }
232     }
233
234     ret = 0;
235
236  end:
237     EVP_PKEY_free(pkey);
238     EVP_PKEY_CTX_free(ctx);
239     BIO_free_all(out);
240     BIO_free(in);
241     OPENSSL_free(pass);
242
243     return ret;
244 }
245
246 static int init_keygen_file(EVP_PKEY_CTX **pctx, const char *file, ENGINE *e)
247 {
248     BIO *pbio;
249     EVP_PKEY *pkey = NULL;
250     EVP_PKEY_CTX *ctx = NULL;
251     if (*pctx) {
252         BIO_puts(bio_err, "Parameters already set!\n");
253         return 0;
254     }
255
256     pbio = BIO_new_file(file, "r");
257     if (!pbio) {
258         BIO_printf(bio_err, "Can't open parameter file %s\n", file);
259         return 0;
260     }
261
262     pkey = PEM_read_bio_Parameters(pbio, NULL);
263     BIO_free(pbio);
264
265     if (!pkey) {
266         BIO_printf(bio_err, "Error reading parameter file %s\n", file);
267         return 0;
268     }
269
270     ctx = EVP_PKEY_CTX_new(pkey, e);
271     if (!ctx)
272         goto err;
273     if (EVP_PKEY_keygen_init(ctx) <= 0)
274         goto err;
275     EVP_PKEY_free(pkey);
276     *pctx = ctx;
277     return 1;
278
279  err:
280     BIO_puts(bio_err, "Error initializing context\n");
281     ERR_print_errors(bio_err);
282     EVP_PKEY_CTX_free(ctx);
283     EVP_PKEY_free(pkey);
284     return 0;
285
286 }
287
288 int init_gen_str(EVP_PKEY_CTX **pctx,
289                  const char *algname, ENGINE *e, int do_param)
290 {
291     EVP_PKEY_CTX *ctx = NULL;
292     const EVP_PKEY_ASN1_METHOD *ameth;
293     ENGINE *tmpeng = NULL;
294     int pkey_id;
295
296     if (*pctx) {
297         BIO_puts(bio_err, "Algorithm already set!\n");
298         return 0;
299     }
300
301     ameth = EVP_PKEY_asn1_find_str(&tmpeng, algname, -1);
302
303 #ifndef OPENSSL_NO_ENGINE
304     if (!ameth && e)
305         ameth = ENGINE_get_pkey_asn1_meth_str(e, algname, -1);
306 #endif
307
308     if (!ameth) {
309         BIO_printf(bio_err, "Algorithm %s not found\n", algname);
310         return 0;
311     }
312
313     ERR_clear_error();
314
315     EVP_PKEY_asn1_get0_info(&pkey_id, NULL, NULL, NULL, NULL, ameth);
316 #ifndef OPENSSL_NO_ENGINE
317     if (tmpeng)
318         ENGINE_finish(tmpeng);
319 #endif
320     ctx = EVP_PKEY_CTX_new_id(pkey_id, e);
321
322     if (!ctx)
323         goto err;
324     if (do_param) {
325         if (EVP_PKEY_paramgen_init(ctx) <= 0)
326             goto err;
327     } else {
328         if (EVP_PKEY_keygen_init(ctx) <= 0)
329             goto err;
330     }
331
332     *pctx = ctx;
333     return 1;
334
335  err:
336     BIO_printf(bio_err, "Error initializing %s context\n", algname);
337     ERR_print_errors(bio_err);
338     EVP_PKEY_CTX_free(ctx);
339     return 0;
340
341 }
342
343 static int genpkey_cb(EVP_PKEY_CTX *ctx)
344 {
345     char c = '*';
346     BIO *b = EVP_PKEY_CTX_get_app_data(ctx);
347     int p;
348     p = EVP_PKEY_CTX_get_keygen_info(ctx, 0);
349     if (p == 0)
350         c = '.';
351     if (p == 1)
352         c = '+';
353     if (p == 2)
354         c = '*';
355     if (p == 3)
356         c = '\n';
357     BIO_write(b, &c, 1);
358     (void)BIO_flush(b);
359     return 1;
360 }