]> git.ipfire.org Git - thirdparty/openssl.git/blob - apps/rsa.c
APPS: Correct the output structure for public keys in 'openssl rsa'
[thirdparty/openssl.git] / apps / rsa.c
1 /*
2 * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License 2.0 (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
8 */
9
10 #include <openssl/opensslconf.h>
11
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <string.h>
15 #include <time.h>
16 #include "apps.h"
17 #include "progs.h"
18 #include <openssl/bio.h>
19 #include <openssl/err.h>
20 #include <openssl/rsa.h>
21 #include <openssl/evp.h>
22 #include <openssl/x509.h>
23 #include <openssl/pem.h>
24 #include <openssl/bn.h>
25 #include <openssl/encoder.h>
26
27 /*
28 * TODO: This include is to get OSSL_KEYMGMT_SELECT_*, which feels a bit
29 * much just for those macros... they might serve better as EVP macros.
30 */
31 #include <openssl/core_dispatch.h>
32
33 typedef enum OPTION_choice {
34 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
35 OPT_INFORM, OPT_OUTFORM, OPT_ENGINE, OPT_IN, OPT_OUT,
36 OPT_PUBIN, OPT_PUBOUT, OPT_PASSOUT, OPT_PASSIN,
37 OPT_RSAPUBKEY_IN, OPT_RSAPUBKEY_OUT,
38 /* Do not change the order here; see case statements below */
39 OPT_PVK_NONE, OPT_PVK_WEAK, OPT_PVK_STRONG,
40 OPT_NOOUT, OPT_TEXT, OPT_MODULUS, OPT_CHECK, OPT_CIPHER,
41 OPT_PROV_ENUM, OPT_TRADITIONAL
42 } OPTION_CHOICE;
43
44 const OPTIONS rsa_options[] = {
45 OPT_SECTION("General"),
46 {"help", OPT_HELP, '-', "Display this summary"},
47 {"check", OPT_CHECK, '-', "Verify key consistency"},
48 {"", OPT_CIPHER, '-', "Any supported cipher"},
49 #ifndef OPENSSL_NO_ENGINE
50 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
51 #endif
52
53 OPT_SECTION("Input"),
54 {"in", OPT_IN, 's', "Input file"},
55 {"inform", OPT_INFORM, 'f', "Input format (DER/PEM/P12/ENGINE"},
56 {"pubin", OPT_PUBIN, '-', "Expect a public key in input file"},
57 {"RSAPublicKey_in", OPT_RSAPUBKEY_IN, '-', "Input is an RSAPublicKey"},
58 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
59
60 OPT_SECTION("Output"),
61 {"out", OPT_OUT, '>', "Output file"},
62 {"outform", OPT_OUTFORM, 'f', "Output format, one of DER PEM PVK"},
63 {"pubout", OPT_PUBOUT, '-', "Output a public key"},
64 {"RSAPublicKey_out", OPT_RSAPUBKEY_OUT, '-', "Output is an RSAPublicKey"},
65 {"passout", OPT_PASSOUT, 's', "Output file pass phrase source"},
66 {"noout", OPT_NOOUT, '-', "Don't print key out"},
67 {"text", OPT_TEXT, '-', "Print the key in text"},
68 {"modulus", OPT_MODULUS, '-', "Print the RSA key modulus"},
69 {"traditional", OPT_TRADITIONAL, '-',
70 "Use traditional format for private keys"},
71
72 OPT_SECTION("PVK"),
73 {"pvk-strong", OPT_PVK_STRONG, '-', "Enable 'Strong' PVK encoding level (default)"},
74 {"pvk-weak", OPT_PVK_WEAK, '-', "Enable 'Weak' PVK encoding level"},
75 {"pvk-none", OPT_PVK_NONE, '-', "Don't enforce PVK encoding"},
76
77 OPT_PROV_OPTIONS,
78 {NULL}
79 };
80
81 int rsa_main(int argc, char **argv)
82 {
83 ENGINE *e = NULL;
84 BIO *out = NULL;
85 EVP_PKEY *pkey = NULL;
86 EVP_PKEY_CTX *pctx;
87 const EVP_CIPHER *enc = NULL;
88 char *infile = NULL, *outfile = NULL, *prog;
89 char *passin = NULL, *passout = NULL, *passinarg = NULL, *passoutarg = NULL;
90 int private = 0;
91 int informat = FORMAT_PEM, outformat = FORMAT_PEM, text = 0, check = 0;
92 int noout = 0, modulus = 0, pubin = 0, pubout = 0, ret = 1;
93 int pvk_encr = 2;
94 OPTION_CHOICE o;
95 int traditional = 0;
96 const char *output_type = NULL;
97 const char *output_structure = NULL;
98 int selection = 0;
99 OSSL_ENCODER_CTX *ectx = NULL;
100
101 prog = opt_init(argc, argv, rsa_options);
102 while ((o = opt_next()) != OPT_EOF) {
103 switch (o) {
104 case OPT_EOF:
105 case OPT_ERR:
106 opthelp:
107 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
108 goto end;
109 case OPT_HELP:
110 opt_help(rsa_options);
111 ret = 0;
112 goto end;
113 case OPT_INFORM:
114 if (!opt_format(opt_arg(), OPT_FMT_ANY, &informat))
115 goto opthelp;
116 break;
117 case OPT_IN:
118 infile = opt_arg();
119 break;
120 case OPT_OUTFORM:
121 if (!opt_format(opt_arg(), OPT_FMT_ANY, &outformat))
122 goto opthelp;
123 break;
124 case OPT_OUT:
125 outfile = opt_arg();
126 break;
127 case OPT_PASSIN:
128 passinarg = opt_arg();
129 break;
130 case OPT_PASSOUT:
131 passoutarg = opt_arg();
132 break;
133 case OPT_ENGINE:
134 e = setup_engine(opt_arg(), 0);
135 break;
136 case OPT_PUBIN:
137 pubin = 1;
138 break;
139 case OPT_PUBOUT:
140 pubout = 1;
141 break;
142 case OPT_RSAPUBKEY_IN:
143 pubin = 2;
144 break;
145 case OPT_RSAPUBKEY_OUT:
146 pubout = 2;
147 break;
148 case OPT_PVK_STRONG: /* pvk_encr:= 2 */
149 case OPT_PVK_WEAK: /* pvk_encr:= 1 */
150 case OPT_PVK_NONE: /* pvk_encr:= 0 */
151 pvk_encr = (o - OPT_PVK_NONE);
152 break;
153 case OPT_NOOUT:
154 noout = 1;
155 break;
156 case OPT_TEXT:
157 text = 1;
158 break;
159 case OPT_MODULUS:
160 modulus = 1;
161 break;
162 case OPT_CHECK:
163 check = 1;
164 break;
165 case OPT_CIPHER:
166 if (!opt_cipher(opt_unknown(), &enc))
167 goto opthelp;
168 break;
169 case OPT_PROV_CASES:
170 if (!opt_provider(o))
171 goto end;
172 break;
173 case OPT_TRADITIONAL:
174 traditional = 1;
175 break;
176 }
177 }
178
179 /* No extra arguments. */
180 argc = opt_num_rest();
181 if (argc != 0)
182 goto opthelp;
183
184 private = (text && !pubin) || (!pubout && !noout) ? 1 : 0;
185
186 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
187 BIO_printf(bio_err, "Error getting passwords\n");
188 goto end;
189 }
190 if (check && pubin) {
191 BIO_printf(bio_err, "Only private keys can be checked\n");
192 goto end;
193 }
194
195 if (pubin) {
196 int tmpformat = -1;
197
198 if (pubin == 2) {
199 if (informat == FORMAT_PEM)
200 tmpformat = FORMAT_PEMRSA;
201 else if (informat == FORMAT_ASN1)
202 tmpformat = FORMAT_ASN1RSA;
203 } else {
204 tmpformat = informat;
205 }
206
207 pkey = load_pubkey(infile, tmpformat, 1, passin, e, "public key");
208 } else {
209 pkey = load_key(infile, informat, 1, passin, e, "private key");
210 }
211
212 if (pkey == NULL) {
213 ERR_print_errors(bio_err);
214 goto end;
215 }
216 if (!EVP_PKEY_is_a(pkey, "RSA")) {
217 BIO_printf(bio_err, "Not an RSA key\n");
218 goto end;
219 }
220
221 out = bio_open_owner(outfile, outformat, private);
222 if (out == NULL)
223 goto end;
224
225 if (text) {
226 assert(pubin || private);
227 if ((pubin && EVP_PKEY_print_public(out, pkey, 0, NULL) <= 0)
228 || (!pubin && EVP_PKEY_print_private(out, pkey, 0, NULL) <= 0)) {
229 perror(outfile);
230 ERR_print_errors(bio_err);
231 goto end;
232 }
233 }
234
235 if (modulus) {
236 BIGNUM *n = NULL;
237
238 /* Every RSA key has an 'n' */
239 EVP_PKEY_get_bn_param(pkey, "n", &n);
240 BIO_printf(out, "Modulus=");
241 BN_print(out, n);
242 BIO_printf(out, "\n");
243 BN_free(n);
244 }
245
246 if (check) {
247 int r;
248
249 pctx = EVP_PKEY_CTX_new_from_pkey(NULL, pkey, NULL);
250 if (pctx == NULL) {
251 BIO_printf(out, "RSA unable to create PKEY context\n");
252 ERR_print_errors(bio_err);
253 goto end;
254 }
255 r = EVP_PKEY_check(pctx);
256 EVP_PKEY_CTX_free(pctx);
257
258 if (r == 1) {
259 BIO_printf(out, "RSA key ok\n");
260 } else if (r == 0) {
261 unsigned long err;
262
263 while ((err = ERR_peek_error()) != 0 &&
264 ERR_GET_LIB(err) == ERR_LIB_RSA &&
265 ERR_GET_REASON(err) != ERR_R_MALLOC_FAILURE) {
266 BIO_printf(out, "RSA key error: %s\n",
267 ERR_reason_error_string(err));
268 ERR_get_error(); /* remove err from error stack */
269 }
270 } else if (r == -1) {
271 ERR_print_errors(bio_err);
272 goto end;
273 }
274 }
275
276 if (noout) {
277 ret = 0;
278 goto end;
279 }
280 BIO_printf(bio_err, "writing RSA key\n");
281
282 /* Choose output type for the format */
283 if (outformat == FORMAT_ASN1) {
284 output_type = "DER";
285 } else if (outformat == FORMAT_PEM) {
286 output_type = "PEM";
287 } else if (outformat == FORMAT_MSBLOB) {
288 output_type = "MSBLOB";
289 } else if (outformat == FORMAT_PVK) {
290 if (pubin) {
291 BIO_printf(bio_err, "PVK form impossible with public key input\n");
292 goto end;
293 }
294 output_type = "PVK";
295 } else {
296 BIO_printf(bio_err, "bad output format specified for outfile\n");
297 goto end;
298 }
299
300 /* Select what you want in the output */
301 if (pubout || pubin) {
302 selection = OSSL_KEYMGMT_SELECT_PUBLIC_KEY;
303 } else {
304 assert(private);
305 selection = (OSSL_KEYMGMT_SELECT_KEYPAIR
306 | OSSL_KEYMGMT_SELECT_ALL_PARAMETERS);
307 }
308
309 /* For DER based output, select the desired output structure */
310 if (outformat == FORMAT_ASN1 || outformat == FORMAT_PEM) {
311 if (pubout || pubin) {
312 if (pubout == 2)
313 output_structure = "pkcs1"; /* "type-specific" would work too */
314 else
315 output_structure = "SubjectPublicKeyInfo";
316 } else {
317 assert(private);
318 if (traditional)
319 output_structure = "pkcs1"; /* "type-specific" would work too */
320 else
321 output_structure = "pkcs8";
322 }
323 }
324
325 /* Now, perform the encoding */
326 ectx = OSSL_ENCODER_CTX_new_by_EVP_PKEY(pkey, selection,
327 output_type, output_structure,
328 NULL);
329 if (OSSL_ENCODER_CTX_get_num_encoders(ectx) == 0) {
330 BIO_printf(bio_err, "%s format not supported\n", output_type);
331 goto end;
332 }
333
334 /* PVK is a bit special... */
335 if (outformat == FORMAT_PVK) {
336 OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
337
338 params[0] = OSSL_PARAM_construct_int("encrypt-level", &pvk_encr);
339 if (!OSSL_ENCODER_CTX_set_params(ectx, params)) {
340 BIO_printf(bio_err, "invalid PVK encryption level\n");
341 goto end;
342 }
343 }
344
345 if (!OSSL_ENCODER_to_bio(ectx, out)) {
346 BIO_printf(bio_err, "unable to write key\n");
347 ERR_print_errors(bio_err);
348 goto end;
349 }
350 ret = 0;
351 end:
352 OSSL_ENCODER_CTX_free(ectx);
353 release_engine(e);
354 BIO_free_all(out);
355 EVP_PKEY_free(pkey);
356 OPENSSL_free(passin);
357 OPENSSL_free(passout);
358 return ret;
359 }