2003-07-21 21:40:02 +08:00
|
|
|
=pod
|
2019-10-31 11:35:08 +08:00
|
|
|
{- OpenSSL::safe::output_do_not_edit_headers(); -}
|
2019-10-13 05:45:56 +08:00
|
|
|
|
2003-07-21 21:40:02 +08:00
|
|
|
=head1 NAME
|
|
|
|
|
2019-08-22 07:04:41 +08:00
|
|
|
openssl-ecparam - EC parameter manipulation and generation
|
2003-07-21 21:40:02 +08:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
B<openssl ecparam>
|
2016-02-06 00:58:45 +08:00
|
|
|
[B<-help>]
|
2019-09-26 03:20:11 +08:00
|
|
|
[B<-inform> B<DER>|B<PEM>]
|
|
|
|
[B<-outform> B<DER>|B<PEM>]
|
|
|
|
[B<-in> I<filename>]
|
|
|
|
[B<-out> I<filename>]
|
2003-07-21 21:40:02 +08:00
|
|
|
[B<-noout>]
|
|
|
|
[B<-text>]
|
|
|
|
[B<-check>]
|
2019-03-31 23:46:53 +08:00
|
|
|
[B<-check_named>]
|
2019-09-26 03:20:11 +08:00
|
|
|
[B<-name> I<arg>]
|
2014-07-03 10:42:40 +08:00
|
|
|
[B<-list_curves>]
|
2019-09-26 03:20:11 +08:00
|
|
|
[B<-conv_form> I<arg>]
|
|
|
|
[B<-param_enc> I<arg>]
|
2003-07-21 21:40:02 +08:00
|
|
|
[B<-no_seed>]
|
|
|
|
[B<-genkey>]
|
2020-09-21 17:56:01 +08:00
|
|
|
{- $OpenSSL::safe::opt_engine_synopsis -}{- $OpenSSL::safe::opt_r_synopsis -}
|
2020-02-25 12:29:30 +08:00
|
|
|
{- $OpenSSL::safe::opt_provider_synopsis -}
|
2003-07-21 21:40:02 +08:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
This command is used to manipulate or generate EC parameter files.
|
|
|
|
|
2019-10-10 09:48:33 +08:00
|
|
|
OpenSSL is currently not able to generate new groups and therefore
|
|
|
|
this command can only create EC parameters from known (named) curves.
|
|
|
|
|
2003-07-21 21:40:02 +08:00
|
|
|
=head1 OPTIONS
|
|
|
|
|
|
|
|
=over 4
|
|
|
|
|
2016-02-06 00:58:45 +08:00
|
|
|
=item B<-help>
|
|
|
|
|
|
|
|
Print out a usage message.
|
|
|
|
|
2021-05-03 20:15:26 +08:00
|
|
|
=item B<-inform> B<DER>|B<PEM>
|
2003-07-21 21:40:02 +08:00
|
|
|
|
2021-05-03 20:15:26 +08:00
|
|
|
The EC parameters input format; unspecified by default.
|
|
|
|
See L<openssl-format-options(1)> for details.
|
|
|
|
|
|
|
|
=item B<-outform> B<DER>|B<PEM>
|
|
|
|
|
|
|
|
The EC parameters output format; the default is B<PEM>.
|
2020-12-10 04:56:51 +08:00
|
|
|
See L<openssl-format-options(1)> for details.
|
2003-07-21 21:40:02 +08:00
|
|
|
|
2019-10-10 09:48:33 +08:00
|
|
|
Parameters are encoded as B<EcpkParameters> as specified in IETF RFC 3279.
|
2003-07-21 21:40:02 +08:00
|
|
|
|
2019-09-26 03:20:11 +08:00
|
|
|
=item B<-in> I<filename>
|
2003-07-21 21:40:02 +08:00
|
|
|
|
2024-09-27 13:58:20 +08:00
|
|
|
This specifies the input file to read parameters from or standard input if
|
2003-07-21 21:40:02 +08:00
|
|
|
this option is not specified.
|
|
|
|
|
2019-09-26 03:20:11 +08:00
|
|
|
=item B<-out> I<filename>
|
2003-07-21 21:40:02 +08:00
|
|
|
|
|
|
|
This specifies the output filename parameters to. Standard output is used
|
2024-09-27 13:58:20 +08:00
|
|
|
if this option is not present.
|
|
|
|
The output filename can be the same as the input filename,
|
|
|
|
which leads to replacing the file contents.
|
|
|
|
Note that file I/O is not atomic. The output file is truncated and then written.
|
2003-07-21 21:40:02 +08:00
|
|
|
|
|
|
|
=item B<-noout>
|
|
|
|
|
|
|
|
This option inhibits the output of the encoded version of the parameters.
|
|
|
|
|
|
|
|
=item B<-text>
|
|
|
|
|
|
|
|
This option prints out the EC parameters in human readable form.
|
|
|
|
|
|
|
|
=item B<-check>
|
|
|
|
|
|
|
|
Validate the elliptic curve parameters.
|
|
|
|
|
2019-03-31 23:46:53 +08:00
|
|
|
=item B<-check_named>
|
|
|
|
|
|
|
|
Validate the elliptic name curve parameters by checking if the curve parameters
|
2019-04-02 08:55:00 +08:00
|
|
|
match any built-in curves.
|
2019-03-31 23:46:53 +08:00
|
|
|
|
2019-09-26 03:20:11 +08:00
|
|
|
=item B<-name> I<arg>
|
2003-07-21 21:40:02 +08:00
|
|
|
|
|
|
|
Use the EC parameters with the specified 'short' name. Use B<-list_curves>
|
|
|
|
to get a list of all currently implemented EC parameters.
|
|
|
|
|
|
|
|
=item B<-list_curves>
|
|
|
|
|
Command docs: fix up command references
Almost all OpenSSL commands are in reality 'openssl cmd', so make sure
they are refered to like that and not just as the sub-command.
Self-references are avoided as much as is possible, and replaced with
"this command". In some cases, we even avoid that with a slight
rewrite of the sentence or paragrah they were in. However, in the few
cases where a self-reference is still admissible, they are done in
bold, i.e. openssl-speed.pod references itself like this:
B<openssl speed>
References to other commands are done as manual links, i.e. CA.pl.pod
references 'openssl req' like this: L<openssl-req(1)>
Some commands are examples rather than references; we enclose those in
C<>.
While we are it, we abolish "utility", replacing it with "command", or
remove it entirely in some cases.
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/10065)
2019-10-02 01:43:36 +08:00
|
|
|
Print out a list of all currently implemented EC parameters names and exit.
|
2003-07-21 21:40:02 +08:00
|
|
|
|
2019-10-02 00:16:29 +08:00
|
|
|
=item B<-conv_form> I<arg>
|
2003-07-21 21:40:02 +08:00
|
|
|
|
|
|
|
This specifies how the points on the elliptic curve are converted
|
2018-03-22 00:27:55 +08:00
|
|
|
into octet strings. Possible values are: B<compressed>, B<uncompressed> (the
|
|
|
|
default value) and B<hybrid>. For more information regarding
|
2003-07-21 21:40:02 +08:00
|
|
|
the point conversion forms please read the X9.62 standard.
|
|
|
|
B<Note> Due to patent issues the B<compressed> option is disabled
|
|
|
|
by default for binary curves and can be enabled by defining
|
|
|
|
the preprocessor macro B<OPENSSL_EC_BIN_PT_COMP> at compile time.
|
|
|
|
|
2019-09-26 03:20:11 +08:00
|
|
|
=item B<-param_enc> I<arg>
|
2003-07-21 21:40:02 +08:00
|
|
|
|
|
|
|
This specifies how the elliptic curve parameters are encoded.
|
|
|
|
Possible value are: B<named_curve>, i.e. the ec parameters are
|
2016-03-20 00:28:58 +08:00
|
|
|
specified by an OID, or B<explicit> where the ec parameters are
|
2016-05-20 20:11:46 +08:00
|
|
|
explicitly given (see RFC 3279 for the definition of the
|
2003-07-21 21:40:02 +08:00
|
|
|
EC parameters structures). The default value is B<named_curve>.
|
2016-07-19 21:27:53 +08:00
|
|
|
B<Note> the B<implicitlyCA> alternative, as specified in RFC 3279,
|
2003-07-21 21:40:02 +08:00
|
|
|
is currently not implemented in OpenSSL.
|
|
|
|
|
|
|
|
=item B<-no_seed>
|
|
|
|
|
|
|
|
This option inhibits that the 'seed' for the parameter generation
|
|
|
|
is included in the ECParameters structure (see RFC 3279).
|
|
|
|
|
|
|
|
=item B<-genkey>
|
|
|
|
|
2016-03-20 00:28:58 +08:00
|
|
|
This option will generate an EC private key using the specified parameters.
|
2003-07-21 21:40:02 +08:00
|
|
|
|
2019-10-13 05:45:56 +08:00
|
|
|
{- $OpenSSL::safe::opt_engine_item -}
|
2003-07-21 21:40:02 +08:00
|
|
|
|
2019-10-13 05:45:56 +08:00
|
|
|
{- $OpenSSL::safe::opt_r_item -}
|
|
|
|
|
2020-02-25 12:29:30 +08:00
|
|
|
{- $OpenSSL::safe::opt_provider_item -}
|
|
|
|
|
2003-07-21 21:40:02 +08:00
|
|
|
=back
|
|
|
|
|
2021-05-12 13:19:54 +08:00
|
|
|
The L<openssl-genpkey(1)> and L<openssl-pkeyparam(1)> commands are capable
|
|
|
|
of performing all the operations this command can, as well as supporting
|
|
|
|
other public key types.
|
|
|
|
|
2003-07-21 21:40:02 +08:00
|
|
|
=head1 EXAMPLES
|
|
|
|
|
2021-05-12 13:19:54 +08:00
|
|
|
The documentation for the L<openssl-genpkey(1)> and L<openssl-pkeyparam(1)>
|
|
|
|
commands contains examples equivalent to the ones listed here.
|
2020-02-18 07:46:52 +08:00
|
|
|
|
2003-07-21 21:40:02 +08:00
|
|
|
To create EC parameters with the group 'prime192v1':
|
|
|
|
|
2004-12-17 13:42:00 +08:00
|
|
|
openssl ecparam -out ec_param.pem -name prime192v1
|
2003-07-21 21:40:02 +08:00
|
|
|
|
|
|
|
To create EC parameters with explicit parameters:
|
|
|
|
|
2004-12-17 13:42:00 +08:00
|
|
|
openssl ecparam -out ec_param.pem -name prime192v1 -param_enc explicit
|
2003-07-21 21:40:02 +08:00
|
|
|
|
|
|
|
To validate given EC parameters:
|
|
|
|
|
2004-12-17 13:42:00 +08:00
|
|
|
openssl ecparam -in ec_param.pem -check
|
2003-07-21 21:40:02 +08:00
|
|
|
|
|
|
|
To create EC parameters and a private key:
|
|
|
|
|
2004-12-17 13:42:00 +08:00
|
|
|
openssl ecparam -out ec_key.pem -name prime192v1 -genkey
|
2003-07-21 21:40:02 +08:00
|
|
|
|
|
|
|
To change the point encoding to 'compressed':
|
|
|
|
|
2004-12-17 13:42:00 +08:00
|
|
|
openssl ecparam -in ec_in.pem -out ec_out.pem -conv_form compressed
|
2003-07-21 21:40:02 +08:00
|
|
|
|
|
|
|
To print out the EC parameters to standard output:
|
|
|
|
|
2004-12-17 13:42:00 +08:00
|
|
|
openssl ecparam -in ec_param.pem -noout -text
|
2003-07-21 21:40:02 +08:00
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2019-08-22 07:04:41 +08:00
|
|
|
L<openssl(1)>,
|
2020-02-12 08:10:44 +08:00
|
|
|
L<openssl-pkeyparam(1)>,
|
|
|
|
L<openssl-genpkey(1)>,
|
2019-08-22 07:04:41 +08:00
|
|
|
L<openssl-ec(1)>,
|
|
|
|
L<openssl-dsaparam(1)>
|
2003-07-21 21:40:02 +08:00
|
|
|
|
2020-06-25 09:27:51 +08:00
|
|
|
=head1 HISTORY
|
|
|
|
|
|
|
|
The B<-engine> option was deprecated in OpenSSL 3.0.
|
|
|
|
|
2020-11-12 07:03:38 +08:00
|
|
|
The B<-C> option was removed in OpenSSL 3.0.
|
|
|
|
|
2016-05-18 23:44:05 +08:00
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
2021-05-06 20:03:23 +08:00
|
|
|
Copyright 2003-2021 The OpenSSL Project Authors. All Rights Reserved.
|
2016-05-18 23:44:05 +08:00
|
|
|
|
2018-12-06 21:04:11 +08:00
|
|
|
Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 23:44:05 +08:00
|
|
|
this file except in compliance with the License. You can obtain a copy
|
|
|
|
in the file LICENSE in the source distribution or at
|
|
|
|
L<https://www.openssl.org/source/license.html>.
|
|
|
|
|
|
|
|
=cut
|