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