2003-07-21 13:40:02 +00:00
|
|
|
=pod
|
|
|
|
|
2019-10-12 17:45:56 -04:00
|
|
|
=begin comment
|
|
|
|
{- join("\n", @autowarntext) -}
|
|
|
|
|
|
|
|
=end comment
|
|
|
|
|
2003-07-21 13:40:02 +00:00
|
|
|
=head1 NAME
|
|
|
|
|
2019-08-22 01:04:41 +02:00
|
|
|
openssl-ec - EC key processing
|
2003-07-21 13:40:02 +00:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
B<openssl> B<ec>
|
2016-02-05 11:58:45 -05:00
|
|
|
[B<-help>]
|
2020-05-06 13:51:50 +02:00
|
|
|
[B<-inform> B<DER>|B<PEM>|B<P12>|B<ENGINE>]
|
2019-09-25 15:20:11 -04:00
|
|
|
[B<-outform> B<DER>|B<PEM>]
|
2020-11-30 07:25:46 +01:00
|
|
|
[B<-in> I<filename>|I<uri>]
|
2019-09-25 15:20:11 -04:00
|
|
|
[B<-passin> I<arg>]
|
|
|
|
[B<-out> I<filename>]
|
|
|
|
[B<-passout> I<arg>]
|
2003-07-21 13:40:02 +00:00
|
|
|
[B<-des>]
|
|
|
|
[B<-des3>]
|
|
|
|
[B<-idea>]
|
|
|
|
[B<-text>]
|
|
|
|
[B<-noout>]
|
|
|
|
[B<-param_out>]
|
|
|
|
[B<-pubin>]
|
|
|
|
[B<-pubout>]
|
2019-09-25 15:20:11 -04:00
|
|
|
[B<-conv_form> I<arg>]
|
|
|
|
[B<-param_enc> I<arg>]
|
2016-01-27 23:45:15 +00:00
|
|
|
[B<-no_public>]
|
2016-02-04 14:47:40 +00:00
|
|
|
[B<-check>]
|
2020-09-21 11:56:01 +02:00
|
|
|
{- $OpenSSL::safe::opt_engine_synopsis -}{- $OpenSSL::safe::opt_provider_synopsis -}
|
2003-07-21 13:40:02 +00:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
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-01 19:43:36 +02:00
|
|
|
The L<openssl-ec(1)> command processes EC keys. They can be converted between
|
|
|
|
various forms and their components printed out. B<Note> OpenSSL uses the
|
2003-07-21 13:40:02 +00:00
|
|
|
private key format specified in 'SEC 1: Elliptic Curve Cryptography'
|
2016-03-19 12:28:58 -04:00
|
|
|
(http://www.secg.org/). To convert an OpenSSL EC private key into the
|
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-01 19:43:36 +02:00
|
|
|
PKCS#8 private key format use the L<openssl-pkcs8(1)> command.
|
2003-07-21 13:40:02 +00:00
|
|
|
|
2016-12-12 11:14:40 -05:00
|
|
|
=head1 OPTIONS
|
2003-07-21 13:40:02 +00:00
|
|
|
|
|
|
|
=over 4
|
|
|
|
|
2016-02-05 11:58:45 -05:00
|
|
|
=item B<-help>
|
|
|
|
|
|
|
|
Print out a usage message.
|
|
|
|
|
2020-05-06 13:51:50 +02:00
|
|
|
=item B<-inform> B<DER>|B<PEM>|B<P12>|B<ENGINE>
|
2003-07-21 13:40:02 +00:00
|
|
|
|
2021-05-03 14:15:26 +02:00
|
|
|
The key input format; unspecified by default.
|
2020-12-09 21:56:51 +01:00
|
|
|
See L<openssl-format-options(1)> for details.
|
2020-05-06 13:51:50 +02:00
|
|
|
|
|
|
|
=item B<-outform> B<DER>|B<PEM>
|
|
|
|
|
2021-05-03 14:15:26 +02:00
|
|
|
The key output format; the default is B<PEM>.
|
2020-12-09 21:56:51 +01:00
|
|
|
See L<openssl-format-options(1)> for details.
|
2003-07-21 13:40:02 +00:00
|
|
|
|
2019-10-09 21:48:33 -04:00
|
|
|
Private keys are an SEC1 private key or PKCS#8 format.
|
|
|
|
Public keys are a B<SubjectPublicKeyInfo> as specified in IETF RFC 3280.
|
2003-07-21 13:40:02 +00:00
|
|
|
|
2020-11-30 07:25:46 +01:00
|
|
|
=item B<-in> I<filename>|I<uri>
|
2003-07-21 13:40:02 +00:00
|
|
|
|
2020-11-30 07:25:46 +01:00
|
|
|
This specifies the input to read a key from or standard input if this
|
2003-07-21 13:40:02 +00:00
|
|
|
option is not specified. If the key is encrypted a pass phrase will be
|
|
|
|
prompted for.
|
|
|
|
|
2019-09-25 15:20:11 -04:00
|
|
|
=item B<-out> I<filename>
|
2003-07-21 13:40:02 +00:00
|
|
|
|
|
|
|
This specifies the output filename to write a key to or standard output by
|
|
|
|
is not specified. If any encryption options are set then a pass phrase will be
|
|
|
|
prompted for. The output filename should B<not> be the same as the input
|
|
|
|
filename.
|
|
|
|
|
2019-10-08 13:10:04 -04:00
|
|
|
=item B<-passin> I<arg>, B<-passout> I<arg>
|
2003-07-21 13:40:02 +00:00
|
|
|
|
2019-10-08 13:10:04 -04:00
|
|
|
The password source for the input and output file.
|
|
|
|
For more information about the format of B<arg>
|
2020-12-09 21:56:51 +01:00
|
|
|
see L<openssl-passphrase-options(1)>.
|
2003-07-21 13:40:02 +00:00
|
|
|
|
2019-09-25 15:20:11 -04:00
|
|
|
=item B<-des>|B<-des3>|B<-idea>
|
2003-07-21 13:40:02 +00:00
|
|
|
|
2016-05-20 08:11:46 -04:00
|
|
|
These options encrypt the private key with the DES, triple DES, IDEA or
|
2003-07-21 13:40:02 +00:00
|
|
|
any other cipher supported by OpenSSL before outputting it. A pass phrase is
|
|
|
|
prompted for.
|
|
|
|
If none of these options is specified the key is written in plain text. This
|
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-01 19:43:36 +02:00
|
|
|
means that using this command to read in an encrypted key with no
|
2003-07-21 13:40:02 +00:00
|
|
|
encryption option can be used to remove the pass phrase from a key, or by
|
|
|
|
setting the encryption options it can be use to add or change the pass phrase.
|
|
|
|
These options can only be used with PEM format output files.
|
|
|
|
|
|
|
|
=item B<-text>
|
|
|
|
|
2017-03-30 07:38:30 +10:00
|
|
|
Prints out the public, private key components and parameters.
|
2003-07-21 13:40:02 +00:00
|
|
|
|
|
|
|
=item B<-noout>
|
|
|
|
|
2017-03-30 07:38:30 +10:00
|
|
|
This option prevents output of the encoded version of the key.
|
2003-07-21 13:40:02 +00:00
|
|
|
|
2021-05-17 11:04:40 +02:00
|
|
|
=item B<-param_out>
|
|
|
|
|
|
|
|
Print the elliptic curve parameters.
|
|
|
|
|
2003-07-21 13:40:02 +00:00
|
|
|
=item B<-pubin>
|
|
|
|
|
2022-08-26 20:40:48 +02:00
|
|
|
By default a private key is read from the input.
|
|
|
|
With this option a public key is read instead.
|
|
|
|
If the input contains no public key but a private key, its public part is used.
|
2003-07-21 13:40:02 +00:00
|
|
|
|
|
|
|
=item B<-pubout>
|
|
|
|
|
2017-03-30 07:38:30 +10:00
|
|
|
By default a private key is output. With this option a public
|
2003-07-21 13:40:02 +00:00
|
|
|
key will be output instead. This option is automatically set if the input is
|
|
|
|
a public key.
|
|
|
|
|
2019-10-01 18:16:29 +02:00
|
|
|
=item B<-conv_form> I<arg>
|
2003-07-21 13:40:02 +00:00
|
|
|
|
|
|
|
This specifies how the points on the elliptic curve are converted
|
2022-07-27 11:43:25 +02:00
|
|
|
into octet strings. Possible values are: B<compressed>, B<uncompressed> (the
|
|
|
|
default value) and B<hybrid>. For more information regarding
|
2003-07-21 13:40:02 +00: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-25 15:20:11 -04:00
|
|
|
=item B<-param_enc> I<arg>
|
2003-07-21 13:40:02 +00:00
|
|
|
|
|
|
|
This specifies how the elliptic curve parameters are encoded.
|
|
|
|
Possible value are: B<named_curve>, i.e. the ec parameters are
|
2016-03-19 12:28:58 -04:00
|
|
|
specified by an OID, or B<explicit> where the ec parameters are
|
2016-05-20 08:11:46 -04:00
|
|
|
explicitly given (see RFC 3279 for the definition of the
|
2003-07-21 13:40:02 +00:00
|
|
|
EC parameters structures). The default value is B<named_curve>.
|
2016-07-19 09:27:53 -04:00
|
|
|
B<Note> the B<implicitlyCA> alternative, as specified in RFC 3279,
|
2003-07-21 13:40:02 +00:00
|
|
|
is currently not implemented in OpenSSL.
|
|
|
|
|
2016-01-27 23:45:15 +00:00
|
|
|
=item B<-no_public>
|
|
|
|
|
|
|
|
This option omits the public key components from the private key output.
|
|
|
|
|
2016-02-04 14:47:40 +00:00
|
|
|
=item B<-check>
|
|
|
|
|
2017-03-30 07:38:30 +10:00
|
|
|
This option checks the consistency of an EC private or public key.
|
2016-02-04 14:47:40 +00:00
|
|
|
|
2019-10-12 17:45:56 -04:00
|
|
|
{- $OpenSSL::safe::opt_engine_item -}
|
2003-07-21 13:40:02 +00:00
|
|
|
|
2020-02-25 14:29:30 +10:00
|
|
|
{- $OpenSSL::safe::opt_provider_item -}
|
|
|
|
|
2003-07-21 13:40:02 +00:00
|
|
|
=back
|
|
|
|
|
2021-05-12 15:19:54 +10:00
|
|
|
The L<openssl-pkey(1)> command is capable of performing all the operations
|
|
|
|
this command can, as well as supporting other public key types.
|
|
|
|
|
2003-07-21 13:40:02 +00:00
|
|
|
=head1 EXAMPLES
|
|
|
|
|
2021-05-12 15:19:54 +10:00
|
|
|
The documentation for the L<openssl-pkey(1)> command contains examples
|
|
|
|
equivalent to the ones listed here.
|
2020-02-18 09:46:52 +10:00
|
|
|
|
2003-07-21 13:40:02 +00:00
|
|
|
To encrypt a private key using triple DES:
|
|
|
|
|
|
|
|
openssl ec -in key.pem -des3 -out keyout.pem
|
|
|
|
|
2016-05-20 08:11:46 -04:00
|
|
|
To convert a private key from PEM to DER format:
|
2003-07-21 13:40:02 +00:00
|
|
|
|
|
|
|
openssl ec -in key.pem -outform DER -out keyout.der
|
|
|
|
|
|
|
|
To print out the components of a private key to standard output:
|
|
|
|
|
|
|
|
openssl ec -in key.pem -text -noout
|
|
|
|
|
|
|
|
To just output the public part of a private key:
|
|
|
|
|
|
|
|
openssl ec -in key.pem -pubout -out pubkey.pem
|
|
|
|
|
|
|
|
To change the parameters encoding to B<explicit>:
|
|
|
|
|
|
|
|
openssl ec -in key.pem -param_enc explicit -out keyout.pem
|
|
|
|
|
|
|
|
To change the point conversion form to B<compressed>:
|
|
|
|
|
|
|
|
openssl ec -in key.pem -conv_form compressed -out keyout.pem
|
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2019-08-22 01:04:41 +02:00
|
|
|
L<openssl(1)>,
|
2020-02-12 10:10:44 +10:00
|
|
|
L<openssl-pkey(1)>,
|
2019-08-22 01:04:41 +02:00
|
|
|
L<openssl-ecparam(1)>,
|
|
|
|
L<openssl-dsa(1)>,
|
|
|
|
L<openssl-rsa(1)>
|
2003-07-21 13:40:02 +00:00
|
|
|
|
2020-06-25 11:27:51 +10:00
|
|
|
=head1 HISTORY
|
|
|
|
|
|
|
|
The B<-engine> option was deprecated in OpenSSL 3.0.
|
|
|
|
|
2021-01-21 14:38:36 +01:00
|
|
|
The B<-conv_form> and B<-no_public> options are no longer supported
|
|
|
|
with keys loaded from an engine in OpenSSL 3.0.
|
|
|
|
|
2016-05-18 11:44:05 -04:00
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
2023-09-07 09:59:15 +01:00
|
|
|
Copyright 2003-2023 The OpenSSL Project Authors. All Rights Reserved.
|
2016-05-18 11:44:05 -04:00
|
|
|
|
2018-12-06 14:04:11 +01:00
|
|
|
Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 11:44:05 -04: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
|