diff options
author | guenther <> | 2014-04-19 10:51:37 +0000 |
---|---|---|
committer | guenther <> | 2014-04-19 10:51:37 +0000 |
commit | c377e608f97c1f161ba29565eb04dbcc272d3844 (patch) | |
tree | 61aff988651f9b91e8d0f753f869c90496d236b1 /src | |
parent | 9e60d35ac1ade619b0d44538f7f50f62c1514194 (diff) | |
download | openbsd-c377e608f97c1f161ba29565eb04dbcc272d3844.tar.gz openbsd-c377e608f97c1f161ba29565eb04dbcc272d3844.tar.bz2 openbsd-c377e608f97c1f161ba29565eb04dbcc272d3844.zip |
Add SSL_OP_NO_TLSv1_1 and SSL_OP_NO_TLSv1_2
Document that SSL_OP_NO_SSLv2 is a no-op now
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libssl/src/doc/ssl/SSL_CTX_set_options.pod | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/src/lib/libssl/src/doc/ssl/SSL_CTX_set_options.pod b/src/lib/libssl/src/doc/ssl/SSL_CTX_set_options.pod index d932282551..43f5514cc1 100644 --- a/src/lib/libssl/src/doc/ssl/SSL_CTX_set_options.pod +++ b/src/lib/libssl/src/doc/ssl/SSL_CTX_set_options.pod | |||
@@ -190,7 +190,8 @@ browser has a cert, it will crash/hang. Works for 3.x and 4.xbeta | |||
190 | 190 | ||
191 | =item SSL_OP_NO_SSLv2 | 191 | =item SSL_OP_NO_SSLv2 |
192 | 192 | ||
193 | Do not use the SSLv2 protocol. | 193 | As of OpenBSD 5.6, this option has no effect as SSLv2 support has been removed. |
194 | In previous versions it disabled use of the SSLv2 protocol. | ||
194 | 195 | ||
195 | =item SSL_OP_NO_SSLv3 | 196 | =item SSL_OP_NO_SSLv3 |
196 | 197 | ||
@@ -198,7 +199,15 @@ Do not use the SSLv3 protocol. | |||
198 | 199 | ||
199 | =item SSL_OP_NO_TLSv1 | 200 | =item SSL_OP_NO_TLSv1 |
200 | 201 | ||
201 | Do not use the TLSv1 protocol. | 202 | Do not use the TLSv1.0 protocol. |
203 | |||
204 | =item SSL_OP_NO_TLSv1_1 | ||
205 | |||
206 | Do not use the TLSv1.1 protocol. | ||
207 | |||
208 | =item SSL_OP_NO_TLSv1_2 | ||
209 | |||
210 | Do not use the TLSv1.2 protocol. | ||
202 | 211 | ||
203 | =item SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION | 212 | =item SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION |
204 | 213 | ||
@@ -335,7 +344,7 @@ B<SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION>, B<SSL_OP_LEGACY_SERVER_CONNECT> | |||
335 | and the function SSL_get_secure_renegotiation_support() were first added in | 344 | and the function SSL_get_secure_renegotiation_support() were first added in |
336 | OpenSSL 0.9.8m. | 345 | OpenSSL 0.9.8m. |
337 | 346 | ||
338 | B<SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION> was changed to have no effect | 347 | B<SSL_OP_NO_SSLv2> and B<SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION> |
339 | in OpenBSD 5.6. | 348 | were changed to have no effect in OpenBSD 5.6. |
340 | 349 | ||
341 | =cut | 350 | =cut |