]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man1/pkey.pod
Add a test for the bug fixed in the previous commit
[thirdparty/openssl.git] / doc / man1 / pkey.pod
CommitLineData
49131a7d
DSH
1=pod
2
3=head1 NAME
4
5pkey - public or private key processing tool
6
7=head1 SYNOPSIS
8
9B<openssl> B<pkey>
169394d4 10[B<-help>]
49131a7d
DSH
11[B<-inform PEM|DER>]
12[B<-outform PEM|DER>]
13[B<-in filename>]
14[B<-passin arg>]
15[B<-out filename>]
16[B<-passout arg>]
05dba815 17[B<-traditional>]
49131a7d
DSH
18[B<-cipher>]
19[B<-text>]
20[B<-text_pub>]
21[B<-noout>]
22[B<-pubin>]
23[B<-pubout>]
24[B<-engine id>]
25
26=head1 DESCRIPTION
27
28The B<pkey> command processes public or private keys. They can be converted
29between various forms and their components printed out.
30
3dfda1a6 31=head1 OPTIONS
49131a7d
DSH
32
33=over 4
34
169394d4
MR
35=item B<-help>
36
37Print out a usage message.
38
49131a7d
DSH
39=item B<-inform DER|PEM>
40
41This specifies the input format DER or PEM.
42
43=item B<-outform DER|PEM>
44
1bc74519 45This specifies the output format, the options have the same meaning as the
49131a7d
DSH
46B<-inform> option.
47
48=item B<-in filename>
49
50This specifies the input filename to read a key from or standard input if this
51option is not specified. If the key is encrypted a pass phrase will be
52prompted for.
53
54=item B<-passin arg>
55
56the input file password source. For more information about the format of B<arg>
9b86974e 57see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)>.
49131a7d
DSH
58
59=item B<-out filename>
60
61This specifies the output filename to write a key to or standard output if this
62option is not specified. If any encryption options are set then a pass phrase
63will be prompted for. The output filename should B<not> be the same as the input
64filename.
65
66=item B<-passout password>
67
68the output file password source. For more information about the format of B<arg>
9b86974e 69see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)>.
49131a7d 70
05dba815
DSH
71=item B<-traditional>
72
73normally a private key is written using standard format: this is PKCS#8 form
74with the appropriate encryption algorithm (if any). If the B<-traditional>
75option is specified then the older "traditional" format is used instead.
76
49131a7d
DSH
77=item B<-cipher>
78
79These options encrypt the private key with the supplied cipher. Any algorithm
80name accepted by EVP_get_cipherbyname() is acceptable such as B<des3>.
81
82=item B<-text>
83
84prints out the various public or private key components in
1bc74519 85plain text in addition to the encoded version.
49131a7d
DSH
86
87=item B<-text_pub>
88
89print out only public key components even if a private key is being processed.
90
91=item B<-noout>
92
93do not output the encoded version of the key.
94
95=item B<-pubin>
96
97by default a private key is read from the input file: with this
98option a public key is read instead.
99
100=item B<-pubout>
101
102by default a private key is output: with this option a public
103key will be output instead. This option is automatically set if
104the input is a public key.
105
106=item B<-engine id>
107
e5fa864f 108specifying an engine (by its unique B<id> string) will cause B<pkey>
49131a7d
DSH
109to attempt to obtain a functional reference to the specified engine,
110thus initialising it if needed. The engine will then be set as the default
111for all available algorithms.
112
113=back
114
115=head1 EXAMPLES
116
117To remove the pass phrase on an RSA private key:
118
119 openssl pkey -in key.pem -out keyout.pem
120
121To encrypt a private key using triple DES:
122
123 openssl pkey -in key.pem -des3 -out keyout.pem
124
1bc74519 125To convert a private key from PEM to DER format:
49131a7d
DSH
126
127 openssl pkey -in key.pem -outform DER -out keyout.der
128
129To print out the components of a private key to standard output:
130
131 openssl pkey -in key.pem -text -noout
132
133To print out the public components of a private key to standard output:
134
135 openssl pkey -in key.pem -text_pub -noout
136
137To just output the public part of a private key:
138
139 openssl pkey -in key.pem -pubout -out pubkey.pem
140
141=head1 SEE ALSO
142
9b86974e 143L<genpkey(1)>, L<rsa(1)>, L<pkcs8(1)>,
1bc74519 144L<dsa(1)>, L<genrsa(1)>, L<gendsa(1)>
49131a7d 145
e2f92610
RS
146=head1 COPYRIGHT
147
148Copyright 2006-2016 The OpenSSL Project Authors. All Rights Reserved.
149
150Licensed under the OpenSSL license (the "License"). You may not use
151this file except in compliance with the License. You can obtain a copy
152in the file LICENSE in the source distribution or at
153L<https://www.openssl.org/source/license.html>.
154
155=cut