summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2021-06-12 11:02:20 +0000
committertb <>2021-06-12 11:02:20 +0000
commit0b460c88bfc9e0a3108d0f7e625d8f3cd081815a (patch)
tree3e1eb36ba89231fc8b52a55bbdc8f16f8dcb8ff5 /src/lib
parentdfcae0917001a88404ae397c35b20caa458f932e (diff)
downloadopenbsd-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.39
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.,
202session resumption requests are only accepted in the initial handshake). 202session resumption requests are only accepted in the initial handshake).
203This option is not needed for clients. 203This option is not needed for clients.
204.It Dv SSL_OP_NO_TICKET 204.It Dv SSL_OP_NO_TICKET
205Normally clients and servers will, where possible, transparently make use of 205Normally clients and servers using TLSv1.2 and earlier will, where possible,
206RFC4507bis tickets for stateless session resumption. 206transparently make use of
207RFC 5077 tickets for stateless session resumption.
207.Pp 208.Pp
208If this option is set this functionality is disabled and tickets will not be 209If this option is set this functionality is disabled and tickets will not be
209used by clients or servers. 210used by clients or servers.