Test the storeutl expectation options
[openssl.git] / apps / genrsa.c
1 /*
2  * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
3  *
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
8  */
9
10 #include <openssl/opensslconf.h>
11 #ifdef OPENSSL_NO_RSA
12 NON_EMPTY_TRANSLATION_UNIT
13 #else
14
15 # include <stdio.h>
16 # include <string.h>
17 # include <sys/types.h>
18 # include <sys/stat.h>
19 # include "apps.h"
20 # include "progs.h"
21 # include <openssl/bio.h>
22 # include <openssl/err.h>
23 # include <openssl/bn.h>
24 # include <openssl/rsa.h>
25 # include <openssl/evp.h>
26 # include <openssl/x509.h>
27 # include <openssl/pem.h>
28 # include <openssl/rand.h>
29
30 # define DEFBITS 2048
31 # define DEFPRIMES 2
32
33 static int genrsa_cb(int p, int n, BN_GENCB *cb);
34
35 typedef enum OPTION_choice {
36     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
37     OPT_3, OPT_F4, OPT_ENGINE,
38     OPT_OUT, OPT_PASSOUT, OPT_CIPHER, OPT_PRIMES,
39     OPT_R_ENUM
40 } OPTION_CHOICE;
41
42 const OPTIONS genrsa_options[] = {
43     {"help", OPT_HELP, '-', "Display this summary"},
44     {"3", OPT_3, '-', "Use 3 for the E value"},
45     {"F4", OPT_F4, '-', "Use F4 (0x10001) for the E value"},
46     {"f4", OPT_F4, '-', "Use F4 (0x10001) for the E value"},
47     {"out", OPT_OUT, 's', "Output the key to specified file"},
48     OPT_R_OPTIONS,
49     {"passout", OPT_PASSOUT, 's', "Output file pass phrase source"},
50     {"", OPT_CIPHER, '-', "Encrypt the output with any supported cipher"},
51 # ifndef OPENSSL_NO_ENGINE
52     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
53 # endif
54     {"primes", OPT_PRIMES, 'p', "Specify number of primes"},
55     {NULL}
56 };
57
58 int genrsa_main(int argc, char **argv)
59 {
60     BN_GENCB *cb = BN_GENCB_new();
61     PW_CB_DATA cb_data;
62     ENGINE *eng = NULL;
63     BIGNUM *bn = BN_new();
64     BIO *out = NULL;
65     const BIGNUM *e;
66     RSA *rsa = NULL;
67     const EVP_CIPHER *enc = NULL;
68     int ret = 1, num = DEFBITS, private = 0, primes = DEFPRIMES;
69     unsigned long f4 = RSA_F4;
70     char *outfile = NULL, *passoutarg = NULL, *passout = NULL;
71     char *prog, *hexe, *dece;
72     OPTION_CHOICE o;
73
74     if (bn == NULL || cb == NULL)
75         goto end;
76
77     BN_GENCB_set(cb, genrsa_cb, bio_err);
78
79     prog = opt_init(argc, argv, genrsa_options);
80     while ((o = opt_next()) != OPT_EOF) {
81         switch (o) {
82         case OPT_EOF:
83         case OPT_ERR:
84 opthelp:
85             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
86             goto end;
87         case OPT_HELP:
88             ret = 0;
89             opt_help(genrsa_options);
90             goto end;
91         case OPT_3:
92             f4 = 3;
93             break;
94         case OPT_F4:
95             f4 = RSA_F4;
96             break;
97         case OPT_OUT:
98             outfile = opt_arg();
99             break;
100         case OPT_ENGINE:
101             eng = setup_engine(opt_arg(), 0);
102             break;
103         case OPT_R_CASES:
104             if (!opt_rand(o))
105                 goto end;
106             break;
107         case OPT_PASSOUT:
108             passoutarg = opt_arg();
109             break;
110         case OPT_CIPHER:
111             if (!opt_cipher(opt_unknown(), &enc))
112                 goto end;
113             break;
114         case OPT_PRIMES:
115             if (!opt_int(opt_arg(), &primes))
116                 goto end;
117             break;
118         }
119     }
120     argc = opt_num_rest();
121     argv = opt_rest();
122
123     if (argc == 1) {
124         if (!opt_int(argv[0], &num) || num <= 0)
125             goto end;
126     } else if (argc > 0) {
127         BIO_printf(bio_err, "Extra arguments given.\n");
128         goto opthelp;
129     }
130
131     private = 1;
132     if (!app_passwd(NULL, passoutarg, NULL, &passout)) {
133         BIO_printf(bio_err, "Error getting password\n");
134         goto end;
135     }
136
137     out = bio_open_owner(outfile, FORMAT_PEM, private);
138     if (out == NULL)
139         goto end;
140
141     BIO_printf(bio_err, "Generating RSA private key, %d bit long modulus (%d primes)\n",
142                num, primes);
143     rsa = eng ? RSA_new_method(eng) : RSA_new();
144     if (rsa == NULL)
145         goto end;
146
147     if (!BN_set_word(bn, f4)
148         || !RSA_generate_multi_prime_key(rsa, num, primes, bn, cb))
149         goto end;
150
151     RSA_get0_key(rsa, NULL, &e, NULL);
152     hexe = BN_bn2hex(e);
153     dece = BN_bn2dec(e);
154     if (hexe && dece) {
155         BIO_printf(bio_err, "e is %s (0x%s)\n", dece, hexe);
156     }
157     OPENSSL_free(hexe);
158     OPENSSL_free(dece);
159     cb_data.password = passout;
160     cb_data.prompt_info = outfile;
161     assert(private);
162     if (!PEM_write_bio_RSAPrivateKey(out, rsa, enc, NULL, 0,
163                                      (pem_password_cb *)password_callback,
164                                      &cb_data))
165         goto end;
166
167     ret = 0;
168  end:
169     BN_free(bn);
170     BN_GENCB_free(cb);
171     RSA_free(rsa);
172     BIO_free_all(out);
173     release_engine(eng);
174     OPENSSL_free(passout);
175     if (ret != 0)
176         ERR_print_errors(bio_err);
177     return ret;
178 }
179
180 static int genrsa_cb(int p, int n, BN_GENCB *cb)
181 {
182     char c = '*';
183
184     if (p == 0)
185         c = '.';
186     if (p == 1)
187         c = '+';
188     if (p == 2)
189         c = '*';
190     if (p == 3)
191         c = '\n';
192     BIO_write(BN_GENCB_get_arg(cb), &c, 1);
193     (void)BIO_flush(BN_GENCB_get_arg(cb));
194     return 1;
195 }
196 #endif