diff options
author | tb <> | 2021-06-12 11:02:20 +0000 |
---|---|---|
committer | tb <> | 2021-06-12 11:02:20 +0000 |
commit | 0b460c88bfc9e0a3108d0f7e625d8f3cd081815a (patch) | |
tree | 3e1eb36ba89231fc8b52a55bbdc8f16f8dcb8ff5 /src/lib | |
parent | dfcae0917001a88404ae397c35b20caa458f932e (diff) | |
download | openbsd-0b460c88bfc9e0a3108d0f7e625d8f3cd081815a.tar.gz openbsd-0b460c88bfc9e0a3108d0f7e625d8f3cd081815a.tar.bz2 openbsd-0b460c88bfc9e0a3108d0f7e625d8f3cd081815a.zip |
RFC 4507bis can refer to various RFCs but this instance is about
RFC 5077. Note that session resumption via session tickets is
only for TLSv1.2 and earlier.
prompted by a question by/ok jmc
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libssl/man/SSL_CTX_set_options.3 | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/lib/libssl/man/SSL_CTX_set_options.3 b/src/lib/libssl/man/SSL_CTX_set_options.3 index a0ec880a80..34c3a1adfd 100644 --- a/src/lib/libssl/man/SSL_CTX_set_options.3 +++ b/src/lib/libssl/man/SSL_CTX_set_options.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: SSL_CTX_set_options.3,v 1.14 2021/06/11 19:41:39 jmc Exp $ | 1 | .\" $OpenBSD: SSL_CTX_set_options.3,v 1.15 2021/06/12 11:02:20 tb Exp $ |
2 | .\" full merge up to: OpenSSL 7946ab33 Dec 6 17:56:41 2015 +0100 | 2 | .\" full merge up to: OpenSSL 7946ab33 Dec 6 17:56:41 2015 +0100 |
3 | .\" selective merge up to: OpenSSL edb79c3a Mar 29 10:07:14 2017 +1000 | 3 | .\" selective merge up to: OpenSSL edb79c3a Mar 29 10:07:14 2017 +1000 |
4 | .\" | 4 | .\" |
@@ -52,7 +52,7 @@ | |||
52 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 52 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
53 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 53 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
54 | .\" | 54 | .\" |
55 | .Dd $Mdocdate: June 11 2021 $ | 55 | .Dd $Mdocdate: June 12 2021 $ |
56 | .Dt SSL_CTX_SET_OPTIONS 3 | 56 | .Dt SSL_CTX_SET_OPTIONS 3 |
57 | .Os | 57 | .Os |
58 | .Sh NAME | 58 | .Sh NAME |
@@ -202,8 +202,9 @@ When performing renegotiation as a server, always start a new session (i.e., | |||
202 | session resumption requests are only accepted in the initial handshake). | 202 | session resumption requests are only accepted in the initial handshake). |
203 | This option is not needed for clients. | 203 | This option is not needed for clients. |
204 | .It Dv SSL_OP_NO_TICKET | 204 | .It Dv SSL_OP_NO_TICKET |
205 | Normally clients and servers will, where possible, transparently make use of | 205 | Normally clients and servers using TLSv1.2 and earlier will, where possible, |
206 | RFC4507bis tickets for stateless session resumption. | 206 | transparently make use of |
207 | RFC 5077 tickets for stateless session resumption. | ||
207 | .Pp | 208 | .Pp |
208 | If this option is set this functionality is disabled and tickets will not be | 209 | If this option is set this functionality is disabled and tickets will not be |
209 | used by clients or servers. | 210 | used by clients or servers. |