]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/pkey.c
Iron out /WX errors in VC-WIN32.
[thirdparty/openssl.git] / apps / pkey.c
CommitLineData
0f113f3e 1/*
2234212c 2 * Copyright 2006-2017 The OpenSSL Project Authors. All Rights Reserved.
3e84b6e1 3 *
846e33c7
RS
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
3e84b6e1 8 */
846e33c7 9
3e84b6e1
DSH
10#include <stdio.h>
11#include <string.h>
12#include "apps.h"
13#include <openssl/pem.h>
14#include <openssl/err.h>
15#include <openssl/evp.h>
16
7e1b7485
RS
17typedef enum OPTION_choice {
18 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
19 OPT_INFORM, OPT_OUTFORM, OPT_PASSIN, OPT_PASSOUT, OPT_ENGINE,
20 OPT_IN, OPT_OUT, OPT_PUBIN, OPT_PUBOUT, OPT_TEXT_PUB,
2aee35d3 21 OPT_TEXT, OPT_NOOUT, OPT_MD, OPT_TRADITIONAL, OPT_CHECK
7e1b7485
RS
22} OPTION_CHOICE;
23
44c83ebd 24const OPTIONS pkey_options[] = {
7e1b7485 25 {"help", OPT_HELP, '-', "Display this summary"},
d18ba3cc 26 {"inform", OPT_INFORM, 'f', "Input format (DER or PEM)"},
7e1b7485
RS
27 {"outform", OPT_OUTFORM, 'F', "Output format (DER or PEM)"},
28 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
29 {"passout", OPT_PASSOUT, 's', "Output file pass phrase source"},
dd958974 30 {"in", OPT_IN, 's', "Input key"},
7e1b7485
RS
31 {"out", OPT_OUT, '>', "Output file"},
32 {"pubin", OPT_PUBIN, '-',
33 "Read public key from input (default is private key)"},
34 {"pubout", OPT_PUBOUT, '-', "Output public key, not private"},
35 {"text_pub", OPT_TEXT_PUB, '-', "Only output public key components"},
36 {"text", OPT_TEXT, '-', "Output in plaintext as well"},
37 {"noout", OPT_NOOUT, '-', "Don't output the key"},
38 {"", OPT_MD, '-', "Any supported cipher"},
05dba815
DSH
39 {"traditional", OPT_TRADITIONAL, '-',
40 "Use traditional format for private keys"},
7e1b7485
RS
41#ifndef OPENSSL_NO_ENGINE
42 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
43#endif
2aee35d3 44 {"check", OPT_CHECK, '-', "Check key consistency"},
7e1b7485
RS
45 {NULL}
46};
3e84b6e1 47
7e1b7485 48int pkey_main(int argc, char **argv)
0f113f3e 49{
0f113f3e 50 BIO *in = NULL, *out = NULL;
7e1b7485 51 ENGINE *e = NULL;
0f113f3e 52 EVP_PKEY *pkey = NULL;
7e1b7485
RS
53 const EVP_CIPHER *cipher = NULL;
54 char *infile = NULL, *outfile = NULL, *passin = NULL, *passout = NULL;
333b070e 55 char *passinarg = NULL, *passoutarg = NULL, *prog;
7e1b7485
RS
56 OPTION_CHOICE o;
57 int informat = FORMAT_PEM, outformat = FORMAT_PEM;
58 int pubin = 0, pubout = 0, pubtext = 0, text = 0, noout = 0, ret = 1;
2aee35d3 59 int private = 0, traditional = 0, check = 0;
7e1b7485
RS
60
61 prog = opt_init(argc, argv, pkey_options);
62 while ((o = opt_next()) != OPT_EOF) {
63 switch (o) {
64 case OPT_EOF:
65 case OPT_ERR:
66 opthelp:
67 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
68 goto end;
69 case OPT_HELP:
70 opt_help(pkey_options);
71 ret = 0;
72 goto end;
73 case OPT_INFORM:
dd958974 74 if (!opt_format(opt_arg(), OPT_FMT_ANY, &informat))
7e1b7485
RS
75 goto opthelp;
76 break;
77 case OPT_OUTFORM:
78 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &outformat))
79 goto opthelp;
80 break;
81 case OPT_PASSIN:
82 passinarg = opt_arg();
83 break;
84 case OPT_PASSOUT:
85 passoutarg = opt_arg();
86 break;
87 case OPT_ENGINE:
333b070e 88 e = setup_engine(opt_arg(), 0);
7e1b7485
RS
89 break;
90 case OPT_IN:
91 infile = opt_arg();
92 break;
93 case OPT_OUT:
94 outfile = opt_arg();
95 break;
96 case OPT_PUBIN:
97 pubin = pubout = pubtext = 1;
98 break;
99 case OPT_PUBOUT:
0f113f3e 100 pubout = 1;
7e1b7485
RS
101 break;
102 case OPT_TEXT_PUB:
103 pubtext = text = 1;
104 break;
105 case OPT_TEXT:
0f113f3e 106 text = 1;
7e1b7485
RS
107 break;
108 case OPT_NOOUT:
0f113f3e 109 noout = 1;
7e1b7485 110 break;
05dba815
DSH
111 case OPT_TRADITIONAL:
112 traditional = 1;
113 break;
2aee35d3
PY
114 case OPT_CHECK:
115 check = 1;
116 break;
7e1b7485
RS
117 case OPT_MD:
118 if (!opt_cipher(opt_unknown(), &cipher))
119 goto opthelp;
0f113f3e 120 }
0f113f3e 121 }
7e1b7485 122 argc = opt_num_rest();
03358517
KR
123 if (argc != 0)
124 goto opthelp;
125
3b061a00
RS
126 private = !noout && !pubout ? 1 : 0;
127 if (text && !pubtext)
128 private = 1;
0f113f3e 129
7e1b7485 130 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
0f113f3e
MC
131 BIO_printf(bio_err, "Error getting passwords\n");
132 goto end;
133 }
134
bdd58d98 135 out = bio_open_owner(outfile, outformat, private);
7e1b7485
RS
136 if (out == NULL)
137 goto end;
0f113f3e
MC
138
139 if (pubin)
7e1b7485 140 pkey = load_pubkey(infile, informat, 1, passin, e, "Public Key");
0f113f3e 141 else
7e1b7485 142 pkey = load_key(infile, informat, 1, passin, e, "key");
2234212c 143 if (pkey == NULL)
0f113f3e
MC
144 goto end;
145
2aee35d3
PY
146 if (check) {
147 int r;
148 EVP_PKEY_CTX *ctx;
149
150 ctx = EVP_PKEY_CTX_new(pkey, e);
151 if (ctx == NULL) {
152 ERR_print_errors(bio_err);
153 goto end;
154 }
155
156 r = EVP_PKEY_check(ctx);
157
158 if (r == 1) {
159 BIO_printf(out, "Key is valid\n");
160 } else {
161 /*
162 * Note: at least for RSA keys if this function returns
163 * -1, there will be no error reasons.
164 */
165 unsigned long err;
166
167 BIO_printf(out, "Key is invalid\n");
168
169 while ((err = ERR_peek_error()) != 0) {
170 BIO_printf(out, "Detailed error: %s\n",
171 ERR_reason_error_string(err));
eff1752b 172 ERR_get_error(); /* remove err from error stack */
2aee35d3
PY
173 }
174 }
175 EVP_PKEY_CTX_free(ctx);
176 }
177
0f113f3e
MC
178 if (!noout) {
179 if (outformat == FORMAT_PEM) {
2234212c 180 if (pubout) {
0f113f3e 181 PEM_write_bio_PUBKEY(out, pkey);
2234212c 182 } else {
7eff6aa0 183 assert(private);
05dba815
DSH
184 if (traditional)
185 PEM_write_bio_PrivateKey_traditional(out, pkey, cipher,
186 NULL, 0, NULL,
187 passout);
188 else
189 PEM_write_bio_PrivateKey(out, pkey, cipher,
190 NULL, 0, NULL, passout);
7eff6aa0 191 }
0f113f3e 192 } else if (outformat == FORMAT_ASN1) {
2234212c 193 if (pubout) {
0f113f3e 194 i2d_PUBKEY_bio(out, pkey);
2234212c 195 } else {
7eff6aa0 196 assert(private);
0f113f3e 197 i2d_PrivateKey_bio(out, pkey);
7eff6aa0 198 }
0f113f3e
MC
199 } else {
200 BIO_printf(bio_err, "Bad format specified for key\n");
201 goto end;
202 }
0f113f3e
MC
203 }
204
205 if (text) {
2234212c 206 if (pubtext) {
0f113f3e 207 EVP_PKEY_print_public(out, pkey, 0, NULL);
2234212c 208 } else {
3b061a00 209 assert(private);
0f113f3e 210 EVP_PKEY_print_private(out, pkey, 0, NULL);
3b061a00 211 }
0f113f3e
MC
212 }
213
214 ret = 0;
215
216 end:
0396a447
DSH
217 if (ret != 0)
218 ERR_print_errors(bio_err);
0f113f3e 219 EVP_PKEY_free(pkey);
dd1abd44 220 release_engine(e);
0f113f3e
MC
221 BIO_free_all(out);
222 BIO_free(in);
b548a1f1
RS
223 OPENSSL_free(passin);
224 OPENSSL_free(passout);
0f113f3e
MC
225
226 return ret;
227}