HTTP client: make server/proxy and port params more consistent; minor other improvements
[openssl.git] / apps / rsa.c
1 /*
2  * Copyright 1995-2018 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 /* We need to use the deprecated RSA low level calls */
11 #define OPENSSL_SUPPRESS_DEPRECATED
12
13 #include <openssl/opensslconf.h>
14 #ifdef OPENSSL_NO_RSA
15 NON_EMPTY_TRANSLATION_UNIT
16 #else
17
18 # include <stdio.h>
19 # include <stdlib.h>
20 # include <string.h>
21 # include <time.h>
22 # include "apps.h"
23 # include "progs.h"
24 # include <openssl/bio.h>
25 # include <openssl/err.h>
26 # include <openssl/rsa.h>
27 # include <openssl/evp.h>
28 # include <openssl/x509.h>
29 # include <openssl/pem.h>
30 # include <openssl/bn.h>
31
32 typedef enum OPTION_choice {
33     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
34     OPT_INFORM, OPT_OUTFORM, OPT_ENGINE, OPT_IN, OPT_OUT,
35     OPT_PUBIN, OPT_PUBOUT, OPT_PASSOUT, OPT_PASSIN,
36     OPT_RSAPUBKEY_IN, OPT_RSAPUBKEY_OUT,
37     /* Do not change the order here; see case statements below */
38     OPT_PVK_NONE, OPT_PVK_WEAK, OPT_PVK_STRONG,
39     OPT_NOOUT, OPT_TEXT, OPT_MODULUS, OPT_CHECK, OPT_CIPHER,
40     OPT_PROV_ENUM
41 } OPTION_CHOICE;
42
43 const OPTIONS rsa_options[] = {
44     OPT_SECTION("General"),
45     {"help", OPT_HELP, '-', "Display this summary"},
46     {"check", OPT_CHECK, '-', "Verify key consistency"},
47     {"", OPT_CIPHER, '-', "Any supported cipher"},
48 # ifndef OPENSSL_NO_ENGINE
49     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
50 # endif
51
52     OPT_SECTION("Input"),
53     {"in", OPT_IN, 's', "Input file"},
54     {"inform", OPT_INFORM, 'f', "Input format, one of DER PEM"},
55     {"pubin", OPT_PUBIN, '-', "Expect a public key in input file"},
56     {"RSAPublicKey_in", OPT_RSAPUBKEY_IN, '-', "Input is an RSAPublicKey"},
57     {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
58
59     OPT_SECTION("Output"),
60     {"out", OPT_OUT, '>', "Output file"},
61     {"outform", OPT_OUTFORM, 'f', "Output format, one of DER PEM PVK"},
62     {"pubout", OPT_PUBOUT, '-', "Output a public key"},
63     {"RSAPublicKey_out", OPT_RSAPUBKEY_OUT, '-', "Output is an RSAPublicKey"},
64     {"passout", OPT_PASSOUT, 's', "Output file pass phrase source"},
65     {"noout", OPT_NOOUT, '-', "Don't print key out"},
66     {"text", OPT_TEXT, '-', "Print the key in text"},
67     {"modulus", OPT_MODULUS, '-', "Print the RSA key modulus"},
68
69 # if !defined(OPENSSL_NO_DSA) && !defined(OPENSSL_NO_RC4)
70     OPT_SECTION("PVK"),
71     {"pvk-strong", OPT_PVK_STRONG, '-', "Enable 'Strong' PVK encoding level (default)"},
72     {"pvk-weak", OPT_PVK_WEAK, '-', "Enable 'Weak' PVK encoding level"},
73     {"pvk-none", OPT_PVK_NONE, '-', "Don't enforce PVK encoding"},
74 # endif
75
76     OPT_PROV_OPTIONS,
77     {NULL}
78 };
79
80 int rsa_main(int argc, char **argv)
81 {
82     ENGINE *e = NULL;
83     BIO *out = NULL;
84     RSA *rsa = NULL;
85     const EVP_CIPHER *enc = NULL;
86     char *infile = NULL, *outfile = NULL, *prog;
87     char *passin = NULL, *passout = NULL, *passinarg = NULL, *passoutarg = NULL;
88     int i, private = 0;
89     int informat = FORMAT_PEM, outformat = FORMAT_PEM, text = 0, check = 0;
90     int noout = 0, modulus = 0, pubin = 0, pubout = 0, ret = 1;
91 # if !defined(OPENSSL_NO_DSA) && !defined(OPENSSL_NO_RC4)
92     int pvk_encr = 2;
93 # endif
94     OPTION_CHOICE o;
95
96     prog = opt_init(argc, argv, rsa_options);
97     while ((o = opt_next()) != OPT_EOF) {
98         switch (o) {
99         case OPT_EOF:
100         case OPT_ERR:
101  opthelp:
102             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
103             goto end;
104         case OPT_HELP:
105             opt_help(rsa_options);
106             ret = 0;
107             goto end;
108         case OPT_INFORM:
109             if (!opt_format(opt_arg(), OPT_FMT_ANY, &informat))
110                 goto opthelp;
111             break;
112         case OPT_IN:
113             infile = opt_arg();
114             break;
115         case OPT_OUTFORM:
116             if (!opt_format(opt_arg(), OPT_FMT_ANY, &outformat))
117                 goto opthelp;
118             break;
119         case OPT_OUT:
120             outfile = opt_arg();
121             break;
122         case OPT_PASSIN:
123             passinarg = opt_arg();
124             break;
125         case OPT_PASSOUT:
126             passoutarg = opt_arg();
127             break;
128         case OPT_ENGINE:
129             e = setup_engine(opt_arg(), 0);
130             break;
131         case OPT_PUBIN:
132             pubin = 1;
133             break;
134         case OPT_PUBOUT:
135             pubout = 1;
136             break;
137         case OPT_RSAPUBKEY_IN:
138             pubin = 2;
139             break;
140         case OPT_RSAPUBKEY_OUT:
141             pubout = 2;
142             break;
143         case OPT_PVK_STRONG:    /* pvk_encr:= 2 */
144         case OPT_PVK_WEAK:      /* pvk_encr:= 1 */
145         case OPT_PVK_NONE:      /* pvk_encr:= 0 */
146 # if !defined(OPENSSL_NO_DSA) && !defined(OPENSSL_NO_RC4)
147             pvk_encr = (o - OPT_PVK_NONE);
148 # endif
149             break;
150         case OPT_NOOUT:
151             noout = 1;
152             break;
153         case OPT_TEXT:
154             text = 1;
155             break;
156         case OPT_MODULUS:
157             modulus = 1;
158             break;
159         case OPT_CHECK:
160             check = 1;
161             break;
162         case OPT_CIPHER:
163             if (!opt_cipher(opt_unknown(), &enc))
164                 goto opthelp;
165             break;
166         case OPT_PROV_CASES:
167             if (!opt_provider(o))
168                 goto end;
169             break;
170         }
171     }
172     argc = opt_num_rest();
173     if (argc != 0)
174         goto opthelp;
175
176     private = (text && !pubin) || (!pubout && !noout) ? 1 : 0;
177
178     if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
179         BIO_printf(bio_err, "Error getting passwords\n");
180         goto end;
181     }
182     if (check && pubin) {
183         BIO_printf(bio_err, "Only private keys can be checked\n");
184         goto end;
185     }
186
187     {
188         EVP_PKEY *pkey;
189
190         if (pubin) {
191             int tmpformat = -1;
192             if (pubin == 2) {
193                 if (informat == FORMAT_PEM)
194                     tmpformat = FORMAT_PEMRSA;
195                 else if (informat == FORMAT_ASN1)
196                     tmpformat = FORMAT_ASN1RSA;
197             } else {
198                 tmpformat = informat;
199             }
200
201             pkey = load_pubkey(infile, tmpformat, 1, passin, e, "Public Key");
202         } else {
203             pkey = load_key(infile, informat, 1, passin, e, "Private Key");
204         }
205
206         if (pkey != NULL)
207             rsa = EVP_PKEY_get1_RSA(pkey);
208         EVP_PKEY_free(pkey);
209     }
210
211     if (rsa == NULL) {
212         ERR_print_errors(bio_err);
213         goto end;
214     }
215
216     out = bio_open_owner(outfile, outformat, private);
217     if (out == NULL)
218         goto end;
219
220     if (text) {
221         assert(pubin || private);
222         if (!RSA_print(out, rsa, 0)) {
223             perror(outfile);
224             ERR_print_errors(bio_err);
225             goto end;
226         }
227     }
228
229     if (modulus) {
230         const BIGNUM *n;
231         RSA_get0_key(rsa, &n, NULL, NULL);
232         BIO_printf(out, "Modulus=");
233         BN_print(out, n);
234         BIO_printf(out, "\n");
235     }
236
237     if (check) {
238         int r = RSA_check_key_ex(rsa, NULL);
239
240         if (r == 1) {
241             BIO_printf(out, "RSA key ok\n");
242         } else if (r == 0) {
243             unsigned long err;
244
245             while ((err = ERR_peek_error()) != 0 &&
246                    ERR_GET_LIB(err) == ERR_LIB_RSA &&
247                    ERR_GET_REASON(err) != ERR_R_MALLOC_FAILURE) {
248                 BIO_printf(out, "RSA key error: %s\n",
249                            ERR_reason_error_string(err));
250                 ERR_get_error(); /* remove err from error stack */
251             }
252         } else if (r == -1) {
253             ERR_print_errors(bio_err);
254             goto end;
255         }
256     }
257
258     if (noout) {
259         ret = 0;
260         goto end;
261     }
262     BIO_printf(bio_err, "writing RSA key\n");
263     if (outformat == FORMAT_ASN1) {
264         if (pubout || pubin) {
265             if (pubout == 2)
266                 i = i2d_RSAPublicKey_bio(out, rsa);
267             else
268                 i = i2d_RSA_PUBKEY_bio(out, rsa);
269         } else {
270             assert(private);
271             i = i2d_RSAPrivateKey_bio(out, rsa);
272         }
273     } else if (outformat == FORMAT_PEM) {
274         if (pubout || pubin) {
275             if (pubout == 2)
276                 i = PEM_write_bio_RSAPublicKey(out, rsa);
277             else
278                 i = PEM_write_bio_RSA_PUBKEY(out, rsa);
279         } else {
280             assert(private);
281             i = PEM_write_bio_RSAPrivateKey(out, rsa,
282                                             enc, NULL, 0, NULL, passout);
283         }
284 # ifndef OPENSSL_NO_DSA
285     } else if (outformat == FORMAT_MSBLOB || outformat == FORMAT_PVK) {
286         EVP_PKEY *pk;
287         pk = EVP_PKEY_new();
288         if (pk == NULL)
289             goto end;
290
291         EVP_PKEY_set1_RSA(pk, rsa);
292         if (outformat == FORMAT_PVK) {
293             if (pubin) {
294                 BIO_printf(bio_err, "PVK form impossible with public key input\n");
295                 EVP_PKEY_free(pk);
296                 goto end;
297             }
298             assert(private);
299 #  ifdef OPENSSL_NO_RC4
300             BIO_printf(bio_err, "PVK format not supported\n");
301             EVP_PKEY_free(pk);
302             goto end;
303 #  else
304             i = i2b_PVK_bio(out, pk, pvk_encr, 0, passout);
305 #  endif
306         } else if (pubin || pubout) {
307             i = i2b_PublicKey_bio(out, pk);
308         } else {
309             assert(private);
310             i = i2b_PrivateKey_bio(out, pk);
311         }
312         EVP_PKEY_free(pk);
313 # endif
314     } else {
315         BIO_printf(bio_err, "bad output format specified for outfile\n");
316         goto end;
317     }
318     if (i <= 0) {
319         BIO_printf(bio_err, "unable to write key\n");
320         ERR_print_errors(bio_err);
321     } else {
322         ret = 0;
323     }
324  end:
325     release_engine(e);
326     BIO_free_all(out);
327     RSA_free(rsa);
328     OPENSSL_free(passin);
329     OPENSSL_free(passout);
330     return ret;
331 }
332 #endif