1=pod 2 3=head1 NAME 4 5openssl-ec, 6ec - EC key processing 7 8=head1 SYNOPSIS 9 10B<openssl> B<ec> 11[B<-help>] 12[B<-inform PEM|DER>] 13[B<-outform PEM|DER>] 14[B<-in filename>] 15[B<-passin arg>] 16[B<-out filename>] 17[B<-passout arg>] 18[B<-des>] 19[B<-des3>] 20[B<-idea>] 21[B<-text>] 22[B<-noout>] 23[B<-param_out>] 24[B<-pubin>] 25[B<-pubout>] 26[B<-conv_form arg>] 27[B<-param_enc arg>] 28[B<-no_public>] 29[B<-check>] 30[B<-engine id>] 31 32=head1 DESCRIPTION 33 34The B<ec> command processes EC keys. They can be converted between various 35forms and their components printed out. B<Note> OpenSSL uses the 36private key format specified in 'SEC 1: Elliptic Curve Cryptography' 37(http://www.secg.org/). To convert an OpenSSL EC private key into the 38PKCS#8 private key format use the B<pkcs8> command. 39 40=head1 OPTIONS 41 42=over 4 43 44=item B<-help> 45 46Print out a usage message. 47 48=item B<-inform DER|PEM> 49 50This specifies the input format. The B<DER> option with a private key uses 51an ASN.1 DER encoded SEC1 private key. When used with a public key it 52uses the SubjectPublicKeyInfo structure as specified in RFC 3280. 53The B<PEM> form is the default format: it consists of the B<DER> format base64 54encoded with additional header and footer lines. In the case of a private key 55PKCS#8 format is also accepted. 56 57=item B<-outform DER|PEM> 58 59This specifies the output format, the options have the same meaning and default 60as the B<-inform> option. 61 62=item B<-in filename> 63 64This specifies the input filename to read a key from or standard input if this 65option is not specified. If the key is encrypted a pass phrase will be 66prompted for. 67 68=item B<-passin arg> 69 70The input file password source. For more information about the format of B<arg> 71see L<openssl(1)/Pass Phrase Options>. 72 73=item B<-out filename> 74 75This specifies the output filename to write a key to or standard output by 76is not specified. If any encryption options are set then a pass phrase will be 77prompted for. The output filename should B<not> be the same as the input 78filename. 79 80=item B<-passout arg> 81 82The output file password source. For more information about the format of B<arg> 83see L<openssl(1)/Pass Phrase Options>. 84 85=item B<-des|-des3|-idea> 86 87These options encrypt the private key with the DES, triple DES, IDEA or 88any other cipher supported by OpenSSL before outputting it. A pass phrase is 89prompted for. 90If none of these options is specified the key is written in plain text. This 91means that using the B<ec> utility to read in an encrypted key with no 92encryption option can be used to remove the pass phrase from a key, or by 93setting the encryption options it can be use to add or change the pass phrase. 94These options can only be used with PEM format output files. 95 96=item B<-text> 97 98Prints out the public, private key components and parameters. 99 100=item B<-noout> 101 102This option prevents output of the encoded version of the key. 103 104=item B<-pubin> 105 106By default, a private key is read from the input file. With this option a 107public key is read instead. 108 109=item B<-pubout> 110 111By default a private key is output. With this option a public 112key will be output instead. This option is automatically set if the input is 113a public key. 114 115=item B<-conv_form> 116 117This specifies how the points on the elliptic curve are converted 118into octet strings. Possible values are: B<compressed> (the default 119value), B<uncompressed> and B<hybrid>. For more information regarding 120the point conversion forms please read the X9.62 standard. 121B<Note> Due to patent issues the B<compressed> option is disabled 122by default for binary curves and can be enabled by defining 123the preprocessor macro B<OPENSSL_EC_BIN_PT_COMP> at compile time. 124 125=item B<-param_enc arg> 126 127This specifies how the elliptic curve parameters are encoded. 128Possible value are: B<named_curve>, i.e. the ec parameters are 129specified by an OID, or B<explicit> where the ec parameters are 130explicitly given (see RFC 3279 for the definition of the 131EC parameters structures). The default value is B<named_curve>. 132B<Note> the B<implicitlyCA> alternative, as specified in RFC 3279, 133is currently not implemented in OpenSSL. 134 135=item B<-no_public> 136 137This option omits the public key components from the private key output. 138 139=item B<-check> 140 141This option checks the consistency of an EC private or public key. 142 143=item B<-engine id> 144 145Specifying an engine (by its unique B<id> string) will cause B<ec> 146to attempt to obtain a functional reference to the specified engine, 147thus initialising it if needed. The engine will then be set as the default 148for all available algorithms. 149 150=back 151 152=head1 NOTES 153 154The PEM private key format uses the header and footer lines: 155 156 -----BEGIN EC PRIVATE KEY----- 157 -----END EC PRIVATE KEY----- 158 159The PEM public key format uses the header and footer lines: 160 161 -----BEGIN PUBLIC KEY----- 162 -----END PUBLIC KEY----- 163 164=head1 EXAMPLES 165 166To encrypt a private key using triple DES: 167 168 openssl ec -in key.pem -des3 -out keyout.pem 169 170To convert a private key from PEM to DER format: 171 172 openssl ec -in key.pem -outform DER -out keyout.der 173 174To print out the components of a private key to standard output: 175 176 openssl ec -in key.pem -text -noout 177 178To just output the public part of a private key: 179 180 openssl ec -in key.pem -pubout -out pubkey.pem 181 182To change the parameters encoding to B<explicit>: 183 184 openssl ec -in key.pem -param_enc explicit -out keyout.pem 185 186To change the point conversion form to B<compressed>: 187 188 openssl ec -in key.pem -conv_form compressed -out keyout.pem 189 190=head1 SEE ALSO 191 192L<ecparam(1)>, L<dsa(1)>, L<rsa(1)> 193 194=head1 COPYRIGHT 195 196Copyright 2003-2021 The OpenSSL Project Authors. All Rights Reserved. 197 198Licensed under the OpenSSL license (the "License"). You may not use 199this file except in compliance with the License. You can obtain a copy 200in the file LICENSE in the source distribution or at 201L<https://www.openssl.org/source/license.html>. 202 203=cut 204