Deleted Added
full compact
s_server.pod (59191) s_server.pod (76866)
1
2=pod
3
4=head1 NAME
5
6s_server - SSL/TLS server program
7
8=head1 SYNOPSIS

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

34[B<-no_ssl2>]
35[B<-no_ssl3>]
36[B<-no_tls1>]
37[B<-no_dhe>]
38[B<-bugs>]
39[B<-hack>]
40[B<-www>]
41[B<-WWW>]
1
2=pod
3
4=head1 NAME
5
6s_server - SSL/TLS server program
7
8=head1 SYNOPSIS

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

34[B<-no_ssl2>]
35[B<-no_ssl3>]
36[B<-no_tls1>]
37[B<-no_dhe>]
38[B<-bugs>]
39[B<-hack>]
40[B<-www>]
41[B<-WWW>]
42[B<-rand file(s)>]
42
43=head1 DESCRIPTION
44
45The B<s_server> command implements a generic SSL/TLS server which listens
46for connections on a given port using SSL/TLS.
47
48=head1 OPTIONS
49

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

89
90=item B<-dhparam filename>
91
92the DH parameter file to use. The ephemeral DH cipher suites generate keys
93using a set of DH parameters. If not specified then an attempt is made to
94load the parameters from the server certificate file. If this fails then
95a static set of parameters hard coded into the s_server program will be used.
96
43
44=head1 DESCRIPTION
45
46The B<s_server> command implements a generic SSL/TLS server which listens
47for connections on a given port using SSL/TLS.
48
49=head1 OPTIONS
50

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

90
91=item B<-dhparam filename>
92
93the DH parameter file to use. The ephemeral DH cipher suites generate keys
94using a set of DH parameters. If not specified then an attempt is made to
95load the parameters from the server certificate file. If this fails then
96a static set of parameters hard coded into the s_server program will be used.
97
97=item B<-nodhe>
98=item B<-no_dhe>
98
99if this option is set then no DH parameters will be loaded effectively
100disabling the ephemeral DH cipher suites.
101
102=item B<-no_tmp_rsa>
103
104certain export cipher suites sometimes use a temporary RSA key, this option
105disables temporary RSA key generation.

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

181web browser.
182
183=item B<-WWW>
184
185emulates a simple web server. Pages will be resolved relative to the
186current directory, for example if the URL https://myhost/page.html is
187requested the file ./page.html will be loaded.
188
99
100if this option is set then no DH parameters will be loaded effectively
101disabling the ephemeral DH cipher suites.
102
103=item B<-no_tmp_rsa>
104
105certain export cipher suites sometimes use a temporary RSA key, this option
106disables temporary RSA key generation.

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

182web browser.
183
184=item B<-WWW>
185
186emulates a simple web server. Pages will be resolved relative to the
187current directory, for example if the URL https://myhost/page.html is
188requested the file ./page.html will be loaded.
189
190=item B<-rand file(s)>
191
192a file or files containing random data used to seed the random number
193generator, or an EGD socket (see L<RAND_egd(3)|RAND_egd(3)>).
194Multiple files can be specified separated by a OS-dependent character.
195The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
196all others.
197
189=back
190
191=head1 CONNECTED COMMANDS
192
193If a connection request is established with an SSL client and neither the
194B<-www> nor the B<-WWW> option has been used then normally any data received
195from the client is displayed and any key presses will be sent to the client.
196

--- 69 unchanged lines hidden ---
198=back
199
200=head1 CONNECTED COMMANDS
201
202If a connection request is established with an SSL client and neither the
203B<-www> nor the B<-WWW> option has been used then normally any data received
204from the client is displayed and any key presses will be sent to the client.
205

--- 69 unchanged lines hidden ---