apps/pkey.c: Make clear that -passout is not supported for DER output
[openssl.git] / doc / man1 / openssl-pkey.pod.in
1 =pod
2
3 =begin comment
4 {- join("\n", @autowarntext) -}
5
6 =end comment
7
8 =head1 NAME
9
10 openssl-pkey - public or private key processing command
11
12 =head1 SYNOPSIS
13
14 B<openssl> B<pkey>
15 [B<-help>]
16 [B<-inform> B<DER>|B<PEM>|B<P12>|B<ENGINE>]
17 [B<-outform> B<DER>|B<PEM>]
18 [B<-in> I<filename>|I<uri>]
19 [B<-passin> I<arg>]
20 [B<-out> I<filename>]
21 [B<-passout> I<arg>]
22 [B<-traditional>]
23 [B<-I<cipher>>]
24 [B<-text>]
25 [B<-text_pub>]
26 [B<-noout>]
27 [B<-pubin>]
28 [B<-pubout>]
29 [B<-check>]
30 [B<-pubcheck>]
31 [B<-ec_conv_form> I<arg>]
32 [B<-ec_param_enc> I<arg>]
33 {- $OpenSSL::safe::opt_engine_synopsis -}{- $OpenSSL::safe::opt_provider_synopsis -}
34
35 =for openssl ifdef engine
36
37 =head1 DESCRIPTION
38
39 This command processes public or private keys. They can be
40 converted between various forms and their components printed out.
41
42 =head1 OPTIONS
43
44 =over 4
45
46 =item B<-help>
47
48 Print out a usage message.
49
50 =item B<-inform> B<DER>|B<PEM>|B<P12>|B<ENGINE>
51
52 The key input format; the default is B<PEM>.
53 The only value with effect is B<ENGINE>; all others have become obsolete.
54 See L<openssl-format-options(1)> for details.
55
56 =item B<-outform> B<DER>|B<PEM>
57
58 The key output formats; the default is B<PEM>.
59 See L<openssl-format-options(1)> for details.
60
61 =item B<-in> I<filename>|I<uri>
62
63 This specifies the input to read a key from or standard input if this
64 option is not specified. If the key is encrypted a pass phrase will be
65 prompted for.
66
67 =item B<-passin> I<arg>, B<-passout> I<arg>
68
69 The password source for the input and output file.
70 The -passout option is not supported for DER output.
71
72 For more information about the format of B<arg>
73 see L<openssl-passphrase-options(1)>.
74
75 =item B<-out> I<filename>
76
77 This specifies the output filename to write a key to or standard output if this
78 option is not specified. If any encryption options are set then a pass phrase
79 will be prompted for. The output filename should B<not> be the same as the input
80 filename.
81
82 =item B<-traditional>
83
84 Normally a private key is written using standard format: this is PKCS#8 form
85 with the appropriate encryption algorithm (if any). If the B<-traditional>
86 option is specified then the older "traditional" format is used instead.
87
88 =item B<-I<cipher>>
89
90 These options encrypt the private key with the supplied cipher. Any algorithm
91 name accepted by EVP_get_cipherbyname() is acceptable such as B<des3>.
92
93 =item B<-text>
94
95 Prints out the various public or private key components in
96 plain text in addition to the encoded version.
97
98 =item B<-text_pub>
99
100 Print out only public key components even if a private key is being processed.
101
102 =item B<-noout>
103
104 Do not output the encoded version of the key.
105
106 =item B<-pubin>
107
108 By default a private key is read from the input file: with this
109 option a public key is read instead.
110
111 =item B<-pubout>
112
113 By default a private key is output: with this option a public
114 key will be output instead. This option is automatically set if
115 the input is a public key.
116
117 =item B<-check>
118
119 This option checks the consistency of a key pair for both public and private
120 components.
121
122 =item B<-pubcheck>
123
124 This option checks the correctness of either a public key or the public component
125 of a key pair.
126
127 =item B<-ec_conv_form> I<arg>
128
129 This option only applies to elliptic curve based public and private keys.
130
131 This specifies how the points on the elliptic curve are converted
132 into octet strings. Possible values are: B<compressed> (the default
133 value), B<uncompressed> and B<hybrid>. For more information regarding
134 the point conversion forms please read the X9.62 standard.
135 B<Note> Due to patent issues the B<compressed> option is disabled
136 by default for binary curves and can be enabled by defining
137 the preprocessor macro B<OPENSSL_EC_BIN_PT_COMP> at compile time.
138
139 =item B<-ec_param_enc> I<arg>
140
141 This option only applies to elliptic curve based public and private keys.
142
143 This specifies how the elliptic curve parameters are encoded.
144 Possible value are: B<named_curve>, i.e. the ec parameters are
145 specified by an OID, or B<explicit> where the ec parameters are
146 explicitly given (see RFC 3279 for the definition of the
147 EC parameters structures). The default value is B<named_curve>.
148 B<Note> the B<implicitlyCA> alternative, as specified in RFC 3279,
149 is currently not implemented in OpenSSL.
150
151 {- $OpenSSL::safe::opt_engine_item -}
152
153 {- $OpenSSL::safe::opt_provider_item -}
154
155 =back
156
157 =head1 EXAMPLES
158
159 To remove the pass phrase on a private key:
160
161  openssl pkey -in key.pem -out keyout.pem
162
163 To encrypt a private key using triple DES:
164
165  openssl pkey -in key.pem -des3 -out keyout.pem
166
167 To convert a private key from PEM to DER format:
168
169  openssl pkey -in key.pem -outform DER -out keyout.der
170
171 To print out the components of a private key to standard output:
172
173  openssl pkey -in key.pem -text -noout
174
175 To print out the public components of a private key to standard output:
176
177  openssl pkey -in key.pem -text_pub -noout
178
179 To just output the public part of a private key:
180
181  openssl pkey -in key.pem -pubout -out pubkey.pem
182
183 To change the EC parameters encoding to B<explicit>:
184
185  openssl pkey -in key.pem -ec_param_enc explicit -out keyout.pem
186
187 To change the EC point conversion form to B<compressed>:
188
189  openssl pkey -in key.pem -ec_conv_form compressed -out keyout.pem
190
191 =head1 SEE ALSO
192
193 L<openssl(1)>,
194 L<openssl-genpkey(1)>,
195 L<openssl-rsa(1)>,
196 L<openssl-pkcs8(1)>,
197 L<openssl-dsa(1)>,
198 L<openssl-genrsa(1)>,
199 L<openssl-gendsa(1)>
200
201 =head1 HISTORY
202
203 The B<-engine> option was deprecated in OpenSSL 3.0.
204
205 =head1 COPYRIGHT
206
207 Copyright 2006-2020 The OpenSSL Project Authors. All Rights Reserved.
208
209 Licensed under the Apache License 2.0 (the "License").  You may not use
210 this file except in compliance with the License.  You can obtain a copy
211 in the file LICENSE in the source distribution or at
212 L<https://www.openssl.org/source/license.html>.
213
214 =cut