source: trunk/third/openssl/doc/apps/rsa.pod @ 18442

Revision 18442, 5.0 KB checked in by zacheiss, 21 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18441, which included commits to RCS files with non-trunk default branches.
Line 
1
2=pod
3
4=head1 NAME
5
6rsa - RSA key processing tool
7
8=head1 SYNOPSIS
9
10B<openssl> B<rsa>
11[B<-inform PEM|NET|DER>]
12[B<-outform PEM|NET|DER>]
13[B<-in filename>]
14[B<-passin arg>]
15[B<-out filename>]
16[B<-passout arg>]
17[B<-sgckey>]
18[B<-des>]
19[B<-des3>]
20[B<-idea>]
21[B<-text>]
22[B<-noout>]
23[B<-modulus>]
24[B<-check>]
25[B<-pubin>]
26[B<-pubout>]
27
28=head1 DESCRIPTION
29
30The B<rsa> command processes RSA keys. They can be converted between various
31forms and their components printed out. B<Note> this command uses the
32traditional SSLeay compatible format for private key encryption: newer
33applications should use the more secure PKCS#8 format using the B<pkcs8>
34utility.
35
36=head1 COMMAND OPTIONS
37
38=over 4
39
40=item B<-inform DER|NET|PEM>
41
42This specifies the input format. The B<DER> option uses an ASN1 DER encoded
43form compatible with the PKCS#1 RSAPrivateKey or SubjectPublicKeyInfo format.
44The B<PEM> form is the default format: it consists of the B<DER> format base64
45encoded with additional header and footer lines. On input PKCS#8 format private
46keys are also accepted. The B<NET> form is a format is described in the B<NOTES>
47section.
48
49=item B<-outform DER|NET|PEM>
50
51This specifies the output format, the options have the same meaning as the
52B<-inform> option.
53
54=item B<-in filename>
55
56This specifies the input filename to read a key from or standard input if this
57option is not specified. If the key is encrypted a pass phrase will be
58prompted for.
59
60=item B<-passin arg>
61
62the input file password source. For more information about the format of B<arg>
63see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)|openssl(1)>.
64
65=item B<-out filename>
66
67This specifies the output filename to write a key to or standard output if this
68option is not specified. If any encryption options are set then a pass phrase
69will be prompted for. The output filename should B<not> be the same as the input
70filename.
71
72=item B<-passout password>
73
74the output file password source. For more information about the format of B<arg>
75see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)|openssl(1)>.
76
77=item B<-sgckey>
78
79use the modified NET algorithm used with some versions of Microsoft IIS and SGC
80keys.
81
82=item B<-des|-des3|-idea>
83
84These options encrypt the private key with the DES, triple DES, or the
85IDEA ciphers respectively before outputting it. A pass phrase is prompted for.
86If none of these options is specified the key is written in plain text. This
87means that using the B<rsa> utility to read in an encrypted key with no
88encryption option can be used to remove the pass phrase from a key, or by
89setting the encryption options it can be use to add or change the pass phrase.
90These options can only be used with PEM format output files.
91
92=item B<-text>
93
94prints out the various public or private key components in
95plain text in addition to the encoded version.
96
97=item B<-noout>
98
99this option prevents output of the encoded version of the key.
100
101=item B<-modulus>
102
103this option prints out the value of the modulus of the key.
104
105=item B<-check>
106
107this option checks the consistency of an RSA private key.
108
109=item B<-pubin>
110
111by default a private key is read from the input file: with this
112option a public key is read instead.
113
114=item B<-pubout>
115
116by default a private key is output: with this option a public
117key will be output instead. This option is automatically set if
118the input is a public key.
119
120=back
121
122=head1 NOTES
123
124The PEM private key format uses the header and footer lines:
125
126 -----BEGIN RSA PRIVATE KEY-----
127 -----END RSA PRIVATE KEY-----
128
129The PEM public key format uses the header and footer lines:
130
131 -----BEGIN PUBLIC KEY-----
132 -----END PUBLIC KEY-----
133
134The B<NET> form is a format compatible with older Netscape servers
135and Microsoft IIS .key files, this uses unsalted RC4 for its encryption.
136It is not very secure and so should only be used when necessary.
137
138Some newer version of IIS have additional data in the exported .key
139files. To use these with the utility, view the file with a binary editor
140and look for the string "private-key", then trace back to the byte
141sequence 0x30, 0x82 (this is an ASN1 SEQUENCE). Copy all the data
142from this point onwards to another file and use that as the input
143to the B<rsa> utility with the B<-inform NET> option. If you get
144an error after entering the password try the B<-sgckey> option.
145
146=head1 EXAMPLES
147
148To remove the pass phrase on an RSA private key:
149
150 openssl rsa -in key.pem -out keyout.pem
151
152To encrypt a private key using triple DES:
153
154 openssl rsa -in key.pem -des3 -out keyout.pem
155
156To convert a private key from PEM to DER format:
157
158 openssl rsa -in key.pem -outform DER -out keyout.der
159
160To print out the components of a private key to standard output:
161
162 openssl rsa -in key.pem -text -noout
163
164To just output the public part of a private key:
165
166 openssl rsa -in key.pem -pubout -out pubkey.pem
167
168=head1 BUGS
169
170The command line password arguments don't currently work with
171B<NET> format.
172
173There should be an option that automatically handles .key files,
174without having to manually edit them.
175
176=head1 SEE ALSO
177
178L<pkcs8(1)|pkcs8(1)>, L<dsa(1)|dsa(1)>, L<genrsa(1)|genrsa(1)>,
179L<gendsa(1)|gendsa(1)>
180
181=cut
Note: See TracBrowser for help on using the repository browser.