]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/pkey.c
Make the handling of output and input formats consistent
[thirdparty/openssl.git] / apps / pkey.c
CommitLineData
0f113f3e
MC
1/*
2 * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
3 * 2006
3e84b6e1
DSH
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
0f113f3e 13 * notice, this list of conditions and the following disclaimer.
3e84b6e1
DSH
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
7e1b7485
RS
65typedef enum OPTION_choice {
66 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
67 OPT_INFORM, OPT_OUTFORM, OPT_PASSIN, OPT_PASSOUT, OPT_ENGINE,
68 OPT_IN, OPT_OUT, OPT_PUBIN, OPT_PUBOUT, OPT_TEXT_PUB,
69 OPT_TEXT, OPT_NOOUT, OPT_MD
70} OPTION_CHOICE;
71
72OPTIONS pkey_options[] = {
73 {"help", OPT_HELP, '-', "Display this summary"},
74 {"inform", OPT_INFORM, 'F', "Input format (DER or PEM)"},
75 {"outform", OPT_OUTFORM, 'F', "Output format (DER or PEM)"},
76 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
77 {"passout", OPT_PASSOUT, 's', "Output file pass phrase source"},
78 {"in", OPT_IN, '<', "Input file"},
79 {"out", OPT_OUT, '>', "Output file"},
80 {"pubin", OPT_PUBIN, '-',
81 "Read public key from input (default is private key)"},
82 {"pubout", OPT_PUBOUT, '-', "Output public key, not private"},
83 {"text_pub", OPT_TEXT_PUB, '-', "Only output public key components"},
84 {"text", OPT_TEXT, '-', "Output in plaintext as well"},
85 {"noout", OPT_NOOUT, '-', "Don't output the key"},
86 {"", OPT_MD, '-', "Any supported cipher"},
87#ifndef OPENSSL_NO_ENGINE
88 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
89#endif
90 {NULL}
91};
3e84b6e1 92
7e1b7485 93int pkey_main(int argc, char **argv)
0f113f3e 94{
0f113f3e 95 BIO *in = NULL, *out = NULL;
7e1b7485 96 ENGINE *e = NULL;
0f113f3e 97 EVP_PKEY *pkey = NULL;
7e1b7485
RS
98 const EVP_CIPHER *cipher = NULL;
99 char *infile = NULL, *outfile = NULL, *passin = NULL, *passout = NULL;
333b070e 100 char *passinarg = NULL, *passoutarg = NULL, *prog;
7e1b7485
RS
101 OPTION_CHOICE o;
102 int informat = FORMAT_PEM, outformat = FORMAT_PEM;
103 int pubin = 0, pubout = 0, pubtext = 0, text = 0, noout = 0, ret = 1;
3b061a00 104 int private = 0;
7e1b7485
RS
105
106 prog = opt_init(argc, argv, pkey_options);
107 while ((o = opt_next()) != OPT_EOF) {
108 switch (o) {
109 case OPT_EOF:
110 case OPT_ERR:
111 opthelp:
112 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
113 goto end;
114 case OPT_HELP:
115 opt_help(pkey_options);
116 ret = 0;
117 goto end;
118 case OPT_INFORM:
119 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &informat))
120 goto opthelp;
121 break;
122 case OPT_OUTFORM:
123 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &outformat))
124 goto opthelp;
125 break;
126 case OPT_PASSIN:
127 passinarg = opt_arg();
128 break;
129 case OPT_PASSOUT:
130 passoutarg = opt_arg();
131 break;
132 case OPT_ENGINE:
333b070e 133 e = setup_engine(opt_arg(), 0);
7e1b7485
RS
134 break;
135 case OPT_IN:
136 infile = opt_arg();
137 break;
138 case OPT_OUT:
139 outfile = opt_arg();
140 break;
141 case OPT_PUBIN:
142 pubin = pubout = pubtext = 1;
143 break;
144 case OPT_PUBOUT:
0f113f3e 145 pubout = 1;
7e1b7485
RS
146 break;
147 case OPT_TEXT_PUB:
148 pubtext = text = 1;
149 break;
150 case OPT_TEXT:
0f113f3e 151 text = 1;
7e1b7485
RS
152 break;
153 case OPT_NOOUT:
0f113f3e 154 noout = 1;
7e1b7485
RS
155 break;
156 case OPT_MD:
157 if (!opt_cipher(opt_unknown(), &cipher))
158 goto opthelp;
0f113f3e 159 }
0f113f3e 160 }
7e1b7485
RS
161 argc = opt_num_rest();
162 argv = opt_rest();
3b061a00
RS
163 private = !noout && !pubout ? 1 : 0;
164 if (text && !pubtext)
165 private = 1;
0f113f3e 166
7e1b7485 167 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
0f113f3e
MC
168 BIO_printf(bio_err, "Error getting passwords\n");
169 goto end;
170 }
171
296f54ee
RL
172 if (!app_load_modules(NULL))
173 goto end;
174
d303b9d8 175 out = bio_open_owner(outfile, WB(outformat), private);
7e1b7485
RS
176 if (out == NULL)
177 goto end;
0f113f3e
MC
178
179 if (pubin)
7e1b7485 180 pkey = load_pubkey(infile, informat, 1, passin, e, "Public Key");
0f113f3e 181 else
7e1b7485 182 pkey = load_key(infile, informat, 1, passin, e, "key");
0f113f3e
MC
183 if (!pkey)
184 goto end;
185
186 if (!noout) {
187 if (outformat == FORMAT_PEM) {
3b061a00 188 assert(private);
0f113f3e
MC
189 if (pubout)
190 PEM_write_bio_PUBKEY(out, pkey);
191 else
192 PEM_write_bio_PrivateKey(out, pkey, cipher,
193 NULL, 0, NULL, passout);
194 } else if (outformat == FORMAT_ASN1) {
3b061a00 195 assert(private);
0f113f3e
MC
196 if (pubout)
197 i2d_PUBKEY_bio(out, pkey);
198 else
199 i2d_PrivateKey_bio(out, pkey);
200 } else {
201 BIO_printf(bio_err, "Bad format specified for key\n");
202 goto end;
203 }
204
205 }
206
207 if (text) {
208 if (pubtext)
209 EVP_PKEY_print_public(out, pkey, 0, NULL);
3b061a00
RS
210 else {
211 assert(private);
0f113f3e 212 EVP_PKEY_print_private(out, pkey, 0, NULL);
3b061a00 213 }
0f113f3e
MC
214 }
215
216 ret = 0;
217
218 end:
219 EVP_PKEY_free(pkey);
220 BIO_free_all(out);
221 BIO_free(in);
b548a1f1
RS
222 OPENSSL_free(passin);
223 OPENSSL_free(passout);
0f113f3e
MC
224
225 return ret;
226}