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