Branch data Line data Source code
1 : : /* apps/genpkey.c */
2 : : /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 : : * project 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(BIO *err, EVP_PKEY_CTX **pctx,
69 : : const char *file, ENGINE *e);
70 : : static int genpkey_cb(EVP_PKEY_CTX *ctx);
71 : :
72 : : #define PROG genpkey_main
73 : :
74 : : int MAIN(int, char **);
75 : :
76 : 0 : int MAIN(int argc, char **argv)
77 : : {
78 : 0 : ENGINE *e = NULL;
79 : 0 : char **args, *outfile = NULL;
80 : 0 : char *passarg = NULL;
81 : 0 : BIO *in = NULL, *out = NULL;
82 : 0 : const EVP_CIPHER *cipher = NULL;
83 : : int outformat;
84 : 0 : int text = 0;
85 : 0 : EVP_PKEY *pkey=NULL;
86 : 0 : EVP_PKEY_CTX *ctx = NULL;
87 : 0 : char *pass = NULL;
88 : 0 : int badarg = 0;
89 : 0 : int ret = 1, rv;
90 : :
91 : 0 : int do_param = 0;
92 : :
93 [ # # ]: 0 : if (bio_err == NULL)
94 : 0 : bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
95 : :
96 [ # # ]: 0 : if (!load_config(bio_err, NULL))
97 : : goto end;
98 : :
99 : 0 : outformat=FORMAT_PEM;
100 : :
101 : 0 : ERR_load_crypto_strings();
102 : 0 : OpenSSL_add_all_algorithms();
103 : 0 : args = argv + 1;
104 [ # # ][ # # ]: 0 : while (!badarg && *args && *args[0] == '-')
[ # # ]
105 : : {
106 [ # # ]: 0 : if (!strcmp(*args,"-outform"))
107 : : {
108 [ # # ]: 0 : if (args[1])
109 : : {
110 : 0 : args++;
111 : 0 : outformat=str2fmt(*args);
112 : : }
113 : : else badarg = 1;
114 : : }
115 [ # # ]: 0 : else if (!strcmp(*args,"-pass"))
116 : : {
117 [ # # ]: 0 : if (!args[1]) goto bad;
118 : 0 : passarg= *(++args);
119 : : }
120 : : #ifndef OPENSSL_NO_ENGINE
121 [ # # ]: 0 : else if (strcmp(*args,"-engine") == 0)
122 : : {
123 [ # # ]: 0 : if (!args[1])
124 : : goto bad;
125 : 0 : e = setup_engine(bio_err, *(++args), 0);
126 : : }
127 : : #endif
128 [ # # ]: 0 : else if (!strcmp (*args, "-paramfile"))
129 : : {
130 [ # # ]: 0 : if (!args[1])
131 : : goto bad;
132 : 0 : args++;
133 [ # # ]: 0 : if (do_param == 1)
134 : : goto bad;
135 [ # # ]: 0 : if (!init_keygen_file(bio_err, &ctx, *args, e))
136 : : goto end;
137 : : }
138 [ # # ]: 0 : else if (!strcmp (*args, "-out"))
139 : : {
140 [ # # ]: 0 : if (args[1])
141 : : {
142 : 0 : args++;
143 : 0 : outfile = *args;
144 : : }
145 : : else badarg = 1;
146 : : }
147 [ # # ]: 0 : else if (strcmp(*args,"-algorithm") == 0)
148 : : {
149 [ # # ]: 0 : if (!args[1])
150 : : goto bad;
151 [ # # ]: 0 : if (!init_gen_str(bio_err, &ctx, *(++args),e, do_param))
152 : : goto end;
153 : : }
154 [ # # ]: 0 : else if (strcmp(*args,"-pkeyopt") == 0)
155 : : {
156 [ # # ]: 0 : if (!args[1])
157 : : goto bad;
158 [ # # ]: 0 : if (!ctx)
159 : : {
160 : 0 : BIO_puts(bio_err, "No keytype specified\n");
161 : 0 : goto bad;
162 : : }
163 [ # # ]: 0 : else if (pkey_ctrl_string(ctx, *(++args)) <= 0)
164 : : {
165 : 0 : BIO_puts(bio_err, "parameter setting error\n");
166 : 0 : ERR_print_errors(bio_err);
167 : 0 : goto end;
168 : : }
169 : : }
170 [ # # ]: 0 : else if (strcmp(*args,"-genparam") == 0)
171 : : {
172 [ # # ]: 0 : if (ctx)
173 : : goto bad;
174 : : do_param = 1;
175 : : }
176 [ # # ]: 0 : else if (strcmp(*args,"-text") == 0)
177 : : text=1;
178 : : else
179 : : {
180 : 0 : cipher = EVP_get_cipherbyname(*args + 1);
181 [ # # ]: 0 : if (!cipher)
182 : : {
183 : 0 : BIO_printf(bio_err, "Unknown cipher %s\n",
184 : 0 : *args + 1);
185 : 0 : badarg = 1;
186 : : }
187 [ # # ]: 0 : if (do_param == 1)
188 : 0 : badarg = 1;
189 : : }
190 : 0 : args++;
191 : : }
192 : :
193 [ # # ]: 0 : if (!ctx)
194 : 0 : badarg = 1;
195 : :
196 [ # # ]: 0 : if (badarg)
197 : : {
198 : : bad:
199 : 0 : BIO_printf(bio_err, "Usage: genpkey [options]\n");
200 : 0 : BIO_printf(bio_err, "where options may be\n");
201 : 0 : BIO_printf(bio_err, "-out file output file\n");
202 : 0 : BIO_printf(bio_err, "-outform X output format (DER or PEM)\n");
203 : 0 : BIO_printf(bio_err, "-pass arg output file pass phrase source\n");
204 : 0 : BIO_printf(bio_err, "-<cipher> use cipher <cipher> to encrypt the key\n");
205 : : #ifndef OPENSSL_NO_ENGINE
206 : 0 : BIO_printf(bio_err, "-engine e use engine e, possibly a hardware device.\n");
207 : : #endif
208 : 0 : BIO_printf(bio_err, "-paramfile file parameters file\n");
209 : 0 : BIO_printf(bio_err, "-algorithm alg the public key algorithm\n");
210 : 0 : BIO_printf(bio_err, "-pkeyopt opt:value set the public key algorithm option <opt>\n"
211 : : " to value <value>\n");
212 : 0 : BIO_printf(bio_err, "-genparam generate parameters, not key\n");
213 : 0 : BIO_printf(bio_err, "-text print the in text\n");
214 : 0 : BIO_printf(bio_err, "NB: options order may be important! See the manual page.\n");
215 : 0 : goto end;
216 : : }
217 : :
218 [ # # ]: 0 : if (!app_passwd(bio_err, passarg, NULL, &pass, NULL))
219 : : {
220 : 0 : BIO_puts(bio_err, "Error getting password\n");
221 : 0 : goto end;
222 : : }
223 : :
224 [ # # ]: 0 : if (outfile)
225 : : {
226 [ # # ]: 0 : if (!(out = BIO_new_file (outfile, "wb")))
227 : : {
228 : 0 : BIO_printf(bio_err,
229 : : "Can't open output file %s\n", outfile);
230 : 0 : goto end;
231 : : }
232 : : }
233 : : else
234 : : {
235 : 0 : out = BIO_new_fp (stdout, BIO_NOCLOSE);
236 : : #ifdef OPENSSL_SYS_VMS
237 : : {
238 : : BIO *tmpbio = BIO_new(BIO_f_linebuffer());
239 : : out = BIO_push(tmpbio, out);
240 : : }
241 : : #endif
242 : : }
243 : :
244 : 0 : EVP_PKEY_CTX_set_cb(ctx, genpkey_cb);
245 : 0 : EVP_PKEY_CTX_set_app_data(ctx, bio_err);
246 : :
247 [ # # ]: 0 : if (do_param)
248 : : {
249 [ # # ]: 0 : if (EVP_PKEY_paramgen(ctx, &pkey) <= 0)
250 : : {
251 : 0 : BIO_puts(bio_err, "Error generating parameters\n");
252 : 0 : ERR_print_errors(bio_err);
253 : 0 : goto end;
254 : : }
255 : : }
256 : : else
257 : : {
258 [ # # ]: 0 : if (EVP_PKEY_keygen(ctx, &pkey) <= 0)
259 : : {
260 : 0 : BIO_puts(bio_err, "Error generating key\n");
261 : 0 : ERR_print_errors(bio_err);
262 : 0 : goto end;
263 : : }
264 : : }
265 : :
266 [ # # ]: 0 : if (do_param)
267 : 0 : rv = PEM_write_bio_Parameters(out, pkey);
268 [ # # ]: 0 : else if (outformat == FORMAT_PEM)
269 : 0 : rv = PEM_write_bio_PrivateKey(out, pkey, cipher, NULL, 0,
270 : : NULL, pass);
271 [ # # ]: 0 : else if (outformat == FORMAT_ASN1)
272 : 0 : rv = i2d_PrivateKey_bio(out, pkey);
273 : : else
274 : : {
275 : 0 : BIO_printf(bio_err, "Bad format specified for key\n");
276 : 0 : goto end;
277 : : }
278 : :
279 [ # # ]: 0 : if (rv <= 0)
280 : : {
281 : 0 : BIO_puts(bio_err, "Error writing key\n");
282 : 0 : ERR_print_errors(bio_err);
283 : : }
284 : :
285 [ # # ]: 0 : if (text)
286 : : {
287 [ # # ]: 0 : if (do_param)
288 : 0 : rv = EVP_PKEY_print_params(out, pkey, 0, NULL);
289 : : else
290 : 0 : rv = EVP_PKEY_print_private(out, pkey, 0, NULL);
291 : :
292 [ # # ]: 0 : if (rv <= 0)
293 : : {
294 : 0 : BIO_puts(bio_err, "Error printing key\n");
295 : 0 : ERR_print_errors(bio_err);
296 : : }
297 : : }
298 : :
299 : : ret = 0;
300 : :
301 : : end:
302 [ # # ]: 0 : if (pkey)
303 : 0 : EVP_PKEY_free(pkey);
304 [ # # ]: 0 : if (ctx)
305 : 0 : EVP_PKEY_CTX_free(ctx);
306 [ # # ]: 0 : if (out)
307 : 0 : BIO_free_all(out);
308 : 0 : BIO_free(in);
309 [ # # ]: 0 : if (pass)
310 : 0 : OPENSSL_free(pass);
311 : :
312 : 0 : return ret;
313 : : }
314 : :
315 : 0 : static int init_keygen_file(BIO *err, EVP_PKEY_CTX **pctx,
316 : : const char *file, ENGINE *e)
317 : : {
318 : : BIO *pbio;
319 : 0 : EVP_PKEY *pkey = NULL;
320 : 0 : EVP_PKEY_CTX *ctx = NULL;
321 [ # # ]: 0 : if (*pctx)
322 : : {
323 : 0 : BIO_puts(err, "Parameters already set!\n");
324 : 0 : return 0;
325 : : }
326 : :
327 : 0 : pbio = BIO_new_file(file, "r");
328 [ # # ]: 0 : if (!pbio)
329 : : {
330 : 0 : BIO_printf(err, "Can't open parameter file %s\n", file);
331 : 0 : return 0;
332 : : }
333 : :
334 : 0 : pkey = PEM_read_bio_Parameters(pbio, NULL);
335 : 0 : BIO_free(pbio);
336 : :
337 [ # # ]: 0 : if (!pkey)
338 : : {
339 : 0 : BIO_printf(bio_err, "Error reading parameter file %s\n", file);
340 : 0 : return 0;
341 : : }
342 : :
343 : 0 : ctx = EVP_PKEY_CTX_new(pkey, e);
344 [ # # ]: 0 : if (!ctx)
345 : : goto err;
346 [ # # ]: 0 : if (EVP_PKEY_keygen_init(ctx) <= 0)
347 : : goto err;
348 : 0 : EVP_PKEY_free(pkey);
349 : 0 : *pctx = ctx;
350 : 0 : return 1;
351 : :
352 : : err:
353 : 0 : BIO_puts(err, "Error initializing context\n");
354 : 0 : ERR_print_errors(err);
355 [ # # ]: 0 : if (ctx)
356 : 0 : EVP_PKEY_CTX_free(ctx);
357 [ # # ]: 0 : if (pkey)
358 : 0 : EVP_PKEY_free(pkey);
359 : : return 0;
360 : :
361 : : }
362 : :
363 : 0 : int init_gen_str(BIO *err, EVP_PKEY_CTX **pctx,
364 : : const char *algname, ENGINE *e, int do_param)
365 : : {
366 : 0 : EVP_PKEY_CTX *ctx = NULL;
367 : : const EVP_PKEY_ASN1_METHOD *ameth;
368 : 0 : ENGINE *tmpeng = NULL;
369 : : int pkey_id;
370 : :
371 [ # # ]: 0 : if (*pctx)
372 : : {
373 : 0 : BIO_puts(err, "Algorithm already set!\n");
374 : 0 : return 0;
375 : : }
376 : :
377 : 0 : ameth = EVP_PKEY_asn1_find_str(&tmpeng, algname, -1);
378 : :
379 : : #ifndef OPENSSL_NO_ENGINE
380 [ # # ]: 0 : if (!ameth && e)
381 : 0 : ameth = ENGINE_get_pkey_asn1_meth_str(e, algname, -1);
382 : : #endif
383 : :
384 [ # # ]: 0 : if (!ameth)
385 : : {
386 : 0 : BIO_printf(bio_err, "Algorithm %s not found\n", algname);
387 : 0 : return 0;
388 : : }
389 : :
390 : 0 : ERR_clear_error();
391 : :
392 : 0 : EVP_PKEY_asn1_get0_info(&pkey_id, NULL, NULL, NULL, NULL, ameth);
393 : : #ifndef OPENSSL_NO_ENGINE
394 [ # # ]: 0 : if (tmpeng)
395 : 0 : ENGINE_finish(tmpeng);
396 : : #endif
397 : 0 : ctx = EVP_PKEY_CTX_new_id(pkey_id, e);
398 : :
399 [ # # ]: 0 : if (!ctx)
400 : : goto err;
401 [ # # ]: 0 : if (do_param)
402 : : {
403 [ # # ]: 0 : if (EVP_PKEY_paramgen_init(ctx) <= 0)
404 : : goto err;
405 : : }
406 : : else
407 : : {
408 [ # # ]: 0 : if (EVP_PKEY_keygen_init(ctx) <= 0)
409 : : goto err;
410 : : }
411 : :
412 : 0 : *pctx = ctx;
413 : 0 : return 1;
414 : :
415 : : err:
416 : 0 : BIO_printf(err, "Error initializing %s context\n", algname);
417 : 0 : ERR_print_errors(err);
418 [ # # ]: 0 : if (ctx)
419 : 0 : EVP_PKEY_CTX_free(ctx);
420 : : return 0;
421 : :
422 : : }
423 : :
424 : 0 : static int genpkey_cb(EVP_PKEY_CTX *ctx)
425 : : {
426 : 0 : char c='*';
427 : 0 : BIO *b = EVP_PKEY_CTX_get_app_data(ctx);
428 : : int p;
429 : 0 : p = EVP_PKEY_CTX_get_keygen_info(ctx, 0);
430 [ # # ]: 0 : if (p == 0) c='.';
431 [ # # ]: 0 : if (p == 1) c='+';
432 [ # # ]: 0 : if (p == 2) c='*';
433 [ # # ]: 0 : if (p == 3) c='\n';
434 : 0 : BIO_write(b,&c,1);
435 : 0 : (void)BIO_flush(b);
436 : : #ifdef LINT
437 : : p=n;
438 : : #endif
439 : 0 : return 1;
440 : : }
|