6 pkey - public or private key processing tool
27 The B<pkey> command processes public or private keys. They can be converted
28 between various forms and their components printed out.
30 =head1 COMMAND OPTIONS
34 =item B<-inform DER|PEM>
36 This specifies the input format DER or PEM.
38 =item B<-outform DER|PEM>
40 This specifies the output format, the options have the same meaning as the
45 This specifies the input filename to read a key from or standard input if this
46 option is not specified. If the key is encrypted a pass phrase will be
51 the input file password source. For more information about the format of B<arg>
52 see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)|openssl(1)>.
54 =item B<-out filename>
56 This specifies the output filename to write a key to or standard output if this
57 option is not specified. If any encryption options are set then a pass phrase
58 will be prompted for. The output filename should B<not> be the same as the input
61 =item B<-passout password>
63 the output file password source. For more information about the format of B<arg>
64 see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)|openssl(1)>.
68 These options encrypt the private key with the supplied cipher. Any algorithm
69 name accepted by EVP_get_cipherbyname() is acceptable such as B<des3>.
73 prints out the various public or private key components in
74 plain text in addition to the encoded version.
78 print out only public key components even if a private key is being processed.
82 do not output the encoded version of the key.
86 by default a private key is read from the input file: with this
87 option a public key is read instead.
91 by default a private key is output: with this option a public
92 key will be output instead. This option is automatically set if
93 the input is a public key.
97 specifying an engine (by its unique B<id> string) will cause B<pkey>
98 to attempt to obtain a functional reference to the specified engine,
99 thus initialising it if needed. The engine will then be set as the default
100 for all available algorithms.
106 To remove the pass phrase on an RSA private key:
108 openssl pkey -in key.pem -out keyout.pem
110 To encrypt a private key using triple DES:
112 openssl pkey -in key.pem -des3 -out keyout.pem
114 To convert a private key from PEM to DER format:
116 openssl pkey -in key.pem -outform DER -out keyout.der
118 To print out the components of a private key to standard output:
120 openssl pkey -in key.pem -text -noout
122 To print out the public components of a private key to standard output:
124 openssl pkey -in key.pem -text_pub -noout
126 To just output the public part of a private key:
128 openssl pkey -in key.pem -pubout -out pubkey.pem
132 L<genpkey(1)|genpkey(1)>, L<rsa(1)|rsa(1)>, L<pkcs8(1)|pkcs8(1)>,
133 L<dsa(1)|dsa(1)>, L<genrsa(1)|genrsa(1)>, L<gendsa(1)|gendsa(1)>