Deleted Added
full compact
rsa.pod (261037) rsa.pod (269682)
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>]
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<-aes128>]
19[B<-aes192>]
20[B<-aes256>]
21[B<-camellia128>]
22[B<-camellia192>]
23[B<-camellia256>]
18[B<-des>]
19[B<-des3>]
20[B<-idea>]
21[B<-text>]
22[B<-noout>]
23[B<-modulus>]
24[B<-check>]
25[B<-pubin>]

--- 51 unchanged lines hidden (view full) ---

77the output file password source. For more information about the format of B<arg>
78see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)|openssl(1)>.
79
80=item B<-sgckey>
81
82use the modified NET algorithm used with some versions of Microsoft IIS and SGC
83keys.
84
24[B<-des>]
25[B<-des3>]
26[B<-idea>]
27[B<-text>]
28[B<-noout>]
29[B<-modulus>]
30[B<-check>]
31[B<-pubin>]

--- 51 unchanged lines hidden (view full) ---

83the output file password source. For more information about the format of B<arg>
84see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)|openssl(1)>.
85
86=item B<-sgckey>
87
88use the modified NET algorithm used with some versions of Microsoft IIS and SGC
89keys.
90
85=item B<-des|-des3|-idea>
91=item B<-aes128|-aes192|-aes256|-camellia128|-camellia192|-camellia256|-des|-des3|-idea>
86
92
87These options encrypt the private key with the DES, triple DES, or the
88IDEA ciphers respectively before outputting it. A pass phrase is prompted for.
93These options encrypt the private key with the specified
94cipher before outputting it. A pass phrase is prompted for.
89If none of these options is specified the key is written in plain text. This
90means that using the B<rsa> utility to read in an encrypted key with no
91encryption option can be used to remove the pass phrase from a key, or by
92setting the encryption options it can be use to add or change the pass phrase.
93These options can only be used with PEM format output files.
94
95=item B<-text>
96

--- 108 unchanged lines hidden ---
95If none of these options is specified the key is written in plain text. This
96means that using the B<rsa> utility to read in an encrypted key with no
97encryption option can be used to remove the pass phrase from a key, or by
98setting the encryption options it can be use to add or change the pass phrase.
99These options can only be used with PEM format output files.
100
101=item B<-text>
102

--- 108 unchanged lines hidden ---