2 * Copyright 2002-2018 The OpenSSL Project Authors. All Rights Reserved.
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
10 #include <openssl/opensslconf.h>
12 NON_EMPTY_TRANSLATION_UNIT
20 # include <openssl/bio.h>
21 # include <openssl/err.h>
22 # include <openssl/evp.h>
23 # include <openssl/pem.h>
25 static OPT_PAIR conv_forms[] = {
26 {"compressed", POINT_CONVERSION_COMPRESSED},
27 {"uncompressed", POINT_CONVERSION_UNCOMPRESSED},
28 {"hybrid", POINT_CONVERSION_HYBRID},
32 static OPT_PAIR param_enc[] = {
33 {"named_curve", OPENSSL_EC_NAMED_CURVE},
38 typedef enum OPTION_choice {
39 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
40 OPT_INFORM, OPT_OUTFORM, OPT_ENGINE, OPT_IN, OPT_OUT,
41 OPT_NOOUT, OPT_TEXT, OPT_PARAM_OUT, OPT_PUBIN, OPT_PUBOUT,
42 OPT_PASSIN, OPT_PASSOUT, OPT_PARAM_ENC, OPT_CONV_FORM, OPT_CIPHER,
43 OPT_NO_PUBLIC, OPT_CHECK
46 const OPTIONS ec_options[] = {
47 OPT_SECTION("General"),
48 {"help", OPT_HELP, '-', "Display this summary"},
49 # ifndef OPENSSL_NO_ENGINE
50 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
54 {"in", OPT_IN, 's', "Input file"},
55 {"inform", OPT_INFORM, 'f', "Input format - DER or PEM"},
56 {"pubin", OPT_PUBIN, '-', "Expect a public key in input file"},
57 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
58 {"check", OPT_CHECK, '-', "check key consistency"},
59 {"", OPT_CIPHER, '-', "Any supported cipher"},
60 {"param_enc", OPT_PARAM_ENC, 's',
61 "Specifies the way the ec parameters are encoded"},
62 {"conv_form", OPT_CONV_FORM, 's', "Specifies the point conversion form "},
64 OPT_SECTION("Output"),
65 {"out", OPT_OUT, '>', "Output file"},
66 {"outform", OPT_OUTFORM, 'F', "Output format - DER or PEM"},
67 {"noout", OPT_NOOUT, '-', "Don't print key out"},
68 {"text", OPT_TEXT, '-', "Print the key"},
69 {"param_out", OPT_PARAM_OUT, '-', "Print the elliptic curve parameters"},
70 {"pubout", OPT_PUBOUT, '-', "Output public key, not private"},
71 {"no_public", OPT_NO_PUBLIC, '-', "exclude public key from private key"},
72 {"passout", OPT_PASSOUT, 's', "Output file pass phrase source"},
76 int ec_main(int argc, char **argv)
78 BIO *in = NULL, *out = NULL;
81 const EC_GROUP *group;
82 const EVP_CIPHER *enc = NULL;
83 point_conversion_form_t form = POINT_CONVERSION_UNCOMPRESSED;
84 char *infile = NULL, *outfile = NULL, *prog;
85 char *passin = NULL, *passout = NULL, *passinarg = NULL, *passoutarg = NULL;
87 int asn1_flag = OPENSSL_EC_NAMED_CURVE, new_form = 0, new_asn1_flag = 0;
88 int informat = FORMAT_PEM, outformat = FORMAT_PEM, text = 0, noout = 0;
89 int pubin = 0, pubout = 0, param_out = 0, i, ret = 1, private = 0;
90 int no_public = 0, check = 0;
92 prog = opt_init(argc, argv, ec_options);
93 while ((o = opt_next()) != OPT_EOF) {
98 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
101 opt_help(ec_options);
105 if (!opt_format(opt_arg(), OPT_FMT_ANY, &informat))
112 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &outformat))
134 passinarg = opt_arg();
137 passoutarg = opt_arg();
140 e = setup_engine(opt_arg(), 0);
143 if (!opt_cipher(opt_unknown(), &enc))
147 if (!opt_pair(opt_arg(), conv_forms, &i))
153 if (!opt_pair(opt_arg(), param_enc, &i))
166 argc = opt_num_rest();
170 private = param_out || pubin || pubout ? 0 : 1;
174 if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
175 BIO_printf(bio_err, "Error getting passwords\n");
179 if (informat != FORMAT_ENGINE) {
180 in = bio_open_default(infile, 'r', informat);
185 BIO_printf(bio_err, "read EC key\n");
186 if (informat == FORMAT_ASN1) {
188 eckey = d2i_EC_PUBKEY_bio(in, NULL);
190 eckey = d2i_ECPrivateKey_bio(in, NULL);
191 } else if (informat == FORMAT_ENGINE) {
194 pkey = load_pubkey(infile, informat, 1, passin, e, "Public Key");
196 pkey = load_key(infile, informat, 1, passin, e, "Private Key");
198 eckey = EVP_PKEY_get1_EC_KEY(pkey);
203 eckey = PEM_read_bio_EC_PUBKEY(in, NULL, NULL, NULL);
205 eckey = PEM_read_bio_ECPrivateKey(in, NULL, NULL, passin);
208 BIO_printf(bio_err, "unable to load Key\n");
209 ERR_print_errors(bio_err);
213 out = bio_open_owner(outfile, outformat, private);
217 group = EC_KEY_get0_group(eckey);
220 EC_KEY_set_conv_form(eckey, form);
223 EC_KEY_set_asn1_flag(eckey, asn1_flag);
226 EC_KEY_set_enc_flags(eckey, EC_PKEY_NO_PUBKEY);
229 assert(pubin || private);
230 if (!EC_KEY_print(out, eckey, 0)) {
232 ERR_print_errors(bio_err);
238 if (EC_KEY_check_key(eckey) == 1) {
239 BIO_printf(bio_err, "EC Key valid.\n");
241 BIO_printf(bio_err, "EC Key Invalid!\n");
242 ERR_print_errors(bio_err);
251 BIO_printf(bio_err, "writing EC key\n");
252 if (outformat == FORMAT_ASN1) {
254 i = i2d_ECPKParameters_bio(out, group);
255 } else if (pubin || pubout) {
256 i = i2d_EC_PUBKEY_bio(out, eckey);
259 i = i2d_ECPrivateKey_bio(out, eckey);
263 i = PEM_write_bio_ECPKParameters(out, group);
264 } else if (pubin || pubout) {
265 i = PEM_write_bio_EC_PUBKEY(out, eckey);
268 i = PEM_write_bio_ECPrivateKey(out, eckey, enc,
269 NULL, 0, NULL, passout);
274 BIO_printf(bio_err, "unable to write private key\n");
275 ERR_print_errors(bio_err);
284 OPENSSL_free(passin);
285 OPENSSL_free(passout);