]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/genrsa.c
Document recent changes in NEWS and CHANGES
[thirdparty/openssl.git] / apps / genrsa.c
CommitLineData
846e33c7 1/*
6738bf14 2 * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
d02b48c6 3 *
dffa7520 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
846e33c7
RS
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
d02b48c6
RE
8 */
9
3eeaab4b 10#include <openssl/opensslconf.h>
effaf4de
RS
11#ifdef OPENSSL_NO_RSA
12NON_EMPTY_TRANSLATION_UNIT
13#else
5daec7ea 14
0f113f3e
MC
15# include <stdio.h>
16# include <string.h>
17# include <sys/types.h>
18# include <sys/stat.h>
19# include "apps.h"
dab2cd68 20# include "progs.h"
0f113f3e
MC
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>
d02b48c6 29
0f113f3e 30# define DEFBITS 2048
665d899f 31# define DEFPRIMES 2
d02b48c6 32
c43fa566
PP
33static int verbose = 0;
34
6d23cf97 35static int genrsa_cb(int p, int n, BN_GENCB *cb);
667ac4ec 36
7e1b7485
RS
37typedef enum OPTION_choice {
38 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
700b4a4a 39 OPT_3, OPT_F4, OPT_ENGINE,
c43fa566 40 OPT_OUT, OPT_PASSOUT, OPT_CIPHER, OPT_PRIMES, OPT_VERBOSE,
3ee1eac2 41 OPT_R_ENUM
7e1b7485 42} OPTION_CHOICE;
667ac4ec 43
44c83ebd 44const OPTIONS genrsa_options[] = {
7e1b7485
RS
45 {"help", OPT_HELP, '-', "Display this summary"},
46 {"3", OPT_3, '-', "Use 3 for the E value"},
47 {"F4", OPT_F4, '-', "Use F4 (0x10001) for the E value"},
48 {"f4", OPT_F4, '-', "Use F4 (0x10001) for the E value"},
6f007824 49 {"out", OPT_OUT, '>', "Output the key to specified file"},
3ee1eac2 50 OPT_R_OPTIONS,
7e1b7485
RS
51 {"passout", OPT_PASSOUT, 's', "Output file pass phrase source"},
52 {"", OPT_CIPHER, '-', "Encrypt the output with any supported cipher"},
0f113f3e 53# ifndef OPENSSL_NO_ENGINE
7e1b7485 54 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
0f113f3e 55# endif
665d899f 56 {"primes", OPT_PRIMES, 'p', "Specify number of primes"},
c43fa566 57 {"verbose", OPT_VERBOSE, '-', "Verbose output"},
7e1b7485
RS
58 {NULL}
59};
60
61int genrsa_main(int argc, char **argv)
62{
63 BN_GENCB *cb = BN_GENCB_new();
3b061a00 64 PW_CB_DATA cb_data;
9862e9aa 65 ENGINE *eng = NULL;
7e1b7485
RS
66 BIGNUM *bn = BN_new();
67 BIO *out = NULL;
2ac6115d 68 const BIGNUM *e;
7e1b7485 69 RSA *rsa = NULL;
0f113f3e 70 const EVP_CIPHER *enc = NULL;
665d899f 71 int ret = 1, num = DEFBITS, private = 0, primes = DEFPRIMES;
0f113f3e 72 unsigned long f4 = RSA_F4;
7e1b7485 73 char *outfile = NULL, *passoutarg = NULL, *passout = NULL;
3ee1eac2 74 char *prog, *hexe, *dece;
7e1b7485 75 OPTION_CHOICE o;
348d0d14 76
96487cdd 77 if (bn == NULL || cb == NULL)
7e1b7485 78 goto end;
348d0d14 79
0f113f3e 80 BN_GENCB_set(cb, genrsa_cb, bio_err);
d02b48c6 81
7e1b7485
RS
82 prog = opt_init(argc, argv, genrsa_options);
83 while ((o = opt_next()) != OPT_EOF) {
84 switch (o) {
85 case OPT_EOF:
86 case OPT_ERR:
c27363f5 87opthelp:
7e1b7485
RS
88 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
89 goto end;
90 case OPT_HELP:
91 ret = 0;
92 opt_help(genrsa_options);
93 goto end;
94 case OPT_3:
0f113f3e 95 f4 = 3;
7e1b7485
RS
96 break;
97 case OPT_F4:
0f113f3e 98 f4 = RSA_F4;
7e1b7485 99 break;
7e1b7485
RS
100 case OPT_OUT:
101 outfile = opt_arg();
902c6b95 102 break;
7e1b7485 103 case OPT_ENGINE:
9862e9aa 104 eng = setup_engine(opt_arg(), 0);
7e1b7485 105 break;
3ee1eac2
RS
106 case OPT_R_CASES:
107 if (!opt_rand(o))
108 goto end;
7e1b7485
RS
109 break;
110 case OPT_PASSOUT:
111 passoutarg = opt_arg();
112 break;
113 case OPT_CIPHER:
114 if (!opt_cipher(opt_unknown(), &enc))
115 goto end;
116 break;
665d899f
PY
117 case OPT_PRIMES:
118 if (!opt_int(opt_arg(), &primes))
119 goto end;
120 break;
c43fa566
PP
121 case OPT_VERBOSE:
122 verbose = 1;
123 break;
7e1b7485 124 }
0f113f3e 125 }
7e1b7485
RS
126 argc = opt_num_rest();
127 argv = opt_rest();
a3fe382e 128
c27363f5
RS
129 if (argc == 1) {
130 if (!opt_int(argv[0], &num) || num <= 0)
131 goto end;
0336df2f
GS
132 if (num > OPENSSL_RSA_MAX_MODULUS_BITS)
133 BIO_printf(bio_err,
134 "Warning: It is not recommended to use more than %d bit for RSA keys.\n"
135 " Your key size is %d! Larger key size may behave not as expected.\n",
136 OPENSSL_RSA_MAX_MODULUS_BITS, num);
c27363f5
RS
137 } else if (argc > 0) {
138 BIO_printf(bio_err, "Extra arguments given.\n");
139 goto opthelp;
140 }
a3fe382e 141
c27363f5 142 private = 1;
7e1b7485 143 if (!app_passwd(NULL, passoutarg, NULL, &passout)) {
0f113f3e 144 BIO_printf(bio_err, "Error getting password\n");
7e1b7485 145 goto end;
0f113f3e 146 }
5270e702 147
bdd58d98 148 out = bio_open_owner(outfile, FORMAT_PEM, private);
7e1b7485
RS
149 if (out == NULL)
150 goto end;
d02b48c6 151
c43fa566
PP
152 if (verbose)
153 BIO_printf(bio_err, "Generating RSA private key, %d bit long modulus (%d primes)\n",
154 num, primes);
9862e9aa 155 rsa = eng ? RSA_new_method(eng) : RSA_new();
96487cdd 156 if (rsa == NULL)
7e1b7485 157 goto end;
0f113f3e 158
665d899f
PY
159 if (!BN_set_word(bn, f4)
160 || !RSA_generate_multi_prime_key(rsa, num, primes, bn, cb))
7e1b7485 161 goto end;
dc03504d 162
9862e9aa
RL
163 RSA_get0_key(rsa, NULL, &e, NULL);
164 hexe = BN_bn2hex(e);
165 dece = BN_bn2dec(e);
c43fa566 166 if (hexe && dece && verbose) {
0f113f3e
MC
167 BIO_printf(bio_err, "e is %s (0x%s)\n", dece, hexe);
168 }
25aaa98a
RS
169 OPENSSL_free(hexe);
170 OPENSSL_free(dece);
3b061a00
RS
171 cb_data.password = passout;
172 cb_data.prompt_info = outfile;
173 assert(private);
174 if (!PEM_write_bio_RSAPrivateKey(out, rsa, enc, NULL, 0,
175 (pem_password_cb *)password_callback,
176 &cb_data))
177 goto end;
d02b48c6 178
0f113f3e 179 ret = 0;
7e1b7485 180 end:
23a1d5e9
RS
181 BN_free(bn);
182 BN_GENCB_free(cb);
d6407083 183 RSA_free(rsa);
ca3a82c3 184 BIO_free_all(out);
dd1abd44 185 release_engine(eng);
b548a1f1 186 OPENSSL_free(passout);
0f113f3e
MC
187 if (ret != 0)
188 ERR_print_errors(bio_err);
26a7d938 189 return ret;
0f113f3e 190}
d02b48c6 191
6d23cf97 192static int genrsa_cb(int p, int n, BN_GENCB *cb)
0f113f3e
MC
193{
194 char c = '*';
d02b48c6 195
c43fa566
PP
196 if (!verbose)
197 return 1;
198
0f113f3e
MC
199 if (p == 0)
200 c = '.';
201 if (p == 1)
202 c = '+';
203 if (p == 2)
204 c = '*';
205 if (p == 3)
206 c = '\n';
207 BIO_write(BN_GENCB_get_arg(cb), &c, 1);
208 (void)BIO_flush(BN_GENCB_get_arg(cb));
209 return 1;
210}
f5d7a031 211#endif