1 /* $OpenBSD: ec.c,v 1.9 2017/01/20 08:57:12 deraadt Exp $ */
3 * Written by Nils Larsch for the OpenSSL project.
5 /* ====================================================================
6 * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * openssl-core@openssl.org.
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
34 * 6. Redistributions of any form whatsoever must retain the following
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
59 #include <openssl/opensslconf.h>
70 #include <openssl/bio.h>
71 #include <openssl/err.h>
72 #include <openssl/evp.h>
73 #include <openssl/pem.h>
77 const EVP_CIPHER
*enc
;
78 point_conversion_form_t form
;
95 ec_opt_enc(int argc
, char **argv
, int *argsused
)
102 if ((ec_config
.enc
= EVP_get_cipherbyname(name
)) != NULL
) {
111 ec_opt_form(char *arg
)
113 if (strcmp(arg
, "compressed") == 0)
114 ec_config
.form
= POINT_CONVERSION_COMPRESSED
;
115 else if (strcmp(arg
, "uncompressed") == 0)
116 ec_config
.form
= POINT_CONVERSION_UNCOMPRESSED
;
117 else if (strcmp(arg
, "hybrid") == 0)
118 ec_config
.form
= POINT_CONVERSION_HYBRID
;
120 fprintf(stderr
, "Invalid point conversion: %s\n", arg
);
124 ec_config
.new_form
= 1;
129 ec_opt_named(char *arg
)
131 if (strcmp(arg
, "named_curve") == 0)
132 ec_config
.asn1_flag
= OPENSSL_EC_NAMED_CURVE
;
133 else if (strcmp(arg
, "explicit") == 0)
134 ec_config
.asn1_flag
= 0;
136 fprintf(stderr
, "Invalid curve type: %s\n", arg
);
140 ec_config
.new_asn1_flag
= 1;
144 static struct option ec_options
[] = {
148 .desc
= "Specify the point conversion form (default"
150 .type
= OPTION_ARG_FUNC
,
151 .opt
.argfunc
= ec_opt_form
,
156 .desc
= "Input file (default stdin)",
158 .opt
.arg
= &ec_config
.infile
,
163 .desc
= "Input format (DER or PEM (default))",
164 .type
= OPTION_ARG_FORMAT
,
165 .opt
.value
= &ec_config
.informat
,
171 .opt
.flag
= &ec_config
.noout
,
176 .desc
= "Output file (default stdout)",
178 .opt
.arg
= &ec_config
.outfile
,
183 .desc
= "Output format (DER or PEM (default))",
184 .type
= OPTION_ARG_FORMAT
,
185 .opt
.value
= &ec_config
.outformat
,
190 .desc
= "Specify the way the ec parameters are encoded"
191 " (default \"uncompressed\")",
192 .type
= OPTION_ARG_FUNC
,
193 .opt
.argfunc
= ec_opt_named
,
197 .desc
= "Print the elliptic curve parameters",
199 .opt
.flag
= &ec_config
.param_out
,
204 .desc
= "Input file passphrase source",
206 .opt
.arg
= &ec_config
.passargin
,
211 .desc
= "Output file passphrase source",
213 .opt
.arg
= &ec_config
.passargout
,
217 .desc
= "Read public key instead of private key from input",
219 .opt
.flag
= &ec_config
.pubin
,
223 .desc
= "Output public key instead of private key in output",
225 .opt
.flag
= &ec_config
.pubout
,
229 .desc
= "Print the public/private key components and parameters",
231 .opt
.flag
= &ec_config
.text
,
235 .desc
= "Cipher to encrypt the output if using PEM format",
236 .type
= OPTION_ARGV_FUNC
,
237 .opt
.argvfunc
= ec_opt_enc
,
243 show_ciphers(const OBJ_NAME
*name
, void *arg
)
247 if (!islower((unsigned char)*name
->name
))
250 fprintf(stderr
, " -%-24s%s", name
->name
, (++n
% 3 ? "" : "\n"));
257 "usage: ec [-conv_form form] [-in file]\n"
258 " [-inform format] [-noout] [-out file] [-outform format]\n"
259 " [-param_enc type] [-param_out] [-passin file]\n"
260 " [-passout file] [-pubin] [-pubout] [-text] [-ciphername]\n\n");
261 options_usage(ec_options
);
263 fprintf(stderr
, "\n");
265 fprintf(stderr
, "Valid ciphername values:\n\n");
266 OBJ_NAME_do_all_sorted(OBJ_NAME_TYPE_CIPHER_METH
, show_ciphers
, NULL
);
267 fprintf(stderr
, "\n");
271 ec_main(int argc
, char **argv
)
274 EC_KEY
*eckey
= NULL
;
275 const EC_GROUP
*group
;
277 BIO
*in
= NULL
, *out
= NULL
;
278 char *passin
= NULL
, *passout
= NULL
;
280 if (single_execution
) {
281 if (pledge("stdio cpath wpath rpath tty", NULL
) == -1) {
287 memset(&ec_config
, 0, sizeof(ec_config
));
289 ec_config
.asn1_flag
= OPENSSL_EC_NAMED_CURVE
;
290 ec_config
.form
= POINT_CONVERSION_UNCOMPRESSED
;
291 ec_config
.informat
= FORMAT_PEM
;
292 ec_config
.outformat
= FORMAT_PEM
;
294 if (options_parse(argc
, argv
, ec_options
, NULL
, NULL
) != 0) {
299 if (!app_passwd(bio_err
, ec_config
.passargin
, ec_config
.passargout
,
300 &passin
, &passout
)) {
301 BIO_printf(bio_err
, "Error getting passwords\n");
304 in
= BIO_new(BIO_s_file());
305 out
= BIO_new(BIO_s_file());
306 if (in
== NULL
|| out
== NULL
) {
307 ERR_print_errors(bio_err
);
310 if (ec_config
.infile
== NULL
)
311 BIO_set_fp(in
, stdin
, BIO_NOCLOSE
);
313 if (BIO_read_filename(in
, ec_config
.infile
) <= 0) {
314 perror(ec_config
.infile
);
319 BIO_printf(bio_err
, "read EC key\n");
320 if (ec_config
.informat
== FORMAT_ASN1
) {
322 eckey
= d2i_EC_PUBKEY_bio(in
, NULL
);
324 eckey
= d2i_ECPrivateKey_bio(in
, NULL
);
325 } else if (ec_config
.informat
== FORMAT_PEM
) {
327 eckey
= PEM_read_bio_EC_PUBKEY(in
, NULL
, NULL
,
330 eckey
= PEM_read_bio_ECPrivateKey(in
, NULL
, NULL
,
333 BIO_printf(bio_err
, "bad input format specified for key\n");
337 BIO_printf(bio_err
, "unable to load Key\n");
338 ERR_print_errors(bio_err
);
341 if (ec_config
.outfile
== NULL
) {
342 BIO_set_fp(out
, stdout
, BIO_NOCLOSE
);
344 if (BIO_write_filename(out
, ec_config
.outfile
) <= 0) {
345 perror(ec_config
.outfile
);
350 group
= EC_KEY_get0_group(eckey
);
352 if (ec_config
.new_form
)
353 EC_KEY_set_conv_form(eckey
, ec_config
.form
);
355 if (ec_config
.new_asn1_flag
)
356 EC_KEY_set_asn1_flag(eckey
, ec_config
.asn1_flag
);
359 if (!EC_KEY_print(out
, eckey
, 0)) {
360 perror(ec_config
.outfile
);
361 ERR_print_errors(bio_err
);
364 if (ec_config
.noout
) {
368 BIO_printf(bio_err
, "writing EC key\n");
369 if (ec_config
.outformat
== FORMAT_ASN1
) {
370 if (ec_config
.param_out
)
371 i
= i2d_ECPKParameters_bio(out
, group
);
372 else if (ec_config
.pubin
|| ec_config
.pubout
)
373 i
= i2d_EC_PUBKEY_bio(out
, eckey
);
375 i
= i2d_ECPrivateKey_bio(out
, eckey
);
376 } else if (ec_config
.outformat
== FORMAT_PEM
) {
377 if (ec_config
.param_out
)
378 i
= PEM_write_bio_ECPKParameters(out
, group
);
379 else if (ec_config
.pubin
|| ec_config
.pubout
)
380 i
= PEM_write_bio_EC_PUBKEY(out
, eckey
);
382 i
= PEM_write_bio_ECPrivateKey(out
, eckey
,
383 ec_config
.enc
, NULL
, 0, NULL
, passout
);
385 BIO_printf(bio_err
, "bad output format specified for "
391 BIO_printf(bio_err
, "unable to write private key\n");
392 ERR_print_errors(bio_err
);