diff options
author | beck <> | 2023-07-02 06:37:27 +0000 |
---|---|---|
committer | beck <> | 2023-07-02 06:37:27 +0000 |
commit | 5fa4afa0f3caaa43f2ba9d4ee6db352737839f89 (patch) | |
tree | 4bacb3a3d0ace64e696059ed29bf6c2df878b8b4 /src/lib/libtls/man | |
parent | 0ded9dcf305231c596837cf0e9a372d5fc79b18b (diff) | |
download | openbsd-5fa4afa0f3caaa43f2ba9d4ee6db352737839f89.tar.gz openbsd-5fa4afa0f3caaa43f2ba9d4ee6db352737839f89.tar.bz2 openbsd-5fa4afa0f3caaa43f2ba9d4ee6db352737839f89.zip |
Remove the ability to do tls 1.0 and 1.1 from libtls.
With this change any requests from configurations to request
versions of tls before tls 1.2 will use tls 1.2. This prepares
us to deprecate tls 1.0 and tls 1.1 support from libssl.
ok tb@
Diffstat (limited to 'src/lib/libtls/man')
-rw-r--r-- | src/lib/libtls/man/tls_config_set_protocols.3 | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/lib/libtls/man/tls_config_set_protocols.3 b/src/lib/libtls/man/tls_config_set_protocols.3 index 7c62493e83..32b8cce757 100644 --- a/src/lib/libtls/man/tls_config_set_protocols.3 +++ b/src/lib/libtls/man/tls_config_set_protocols.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: tls_config_set_protocols.3,v 1.11 2021/01/02 19:58:44 schwarze Exp $ | 1 | .\" $OpenBSD: tls_config_set_protocols.3,v 1.12 2023/07/02 06:37:27 beck Exp $ |
2 | .\" | 2 | .\" |
3 | .\" Copyright (c) 2014 Ted Unangst <tedu@openbsd.org> | 3 | .\" Copyright (c) 2014 Ted Unangst <tedu@openbsd.org> |
4 | .\" Copyright (c) 2015, 2016 Joel Sing <jsing@openbsd.org> | 4 | .\" Copyright (c) 2015, 2016 Joel Sing <jsing@openbsd.org> |
@@ -16,7 +16,7 @@ | |||
16 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 16 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
17 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 17 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
18 | .\" | 18 | .\" |
19 | .Dd $Mdocdate: January 2 2021 $ | 19 | .Dd $Mdocdate: July 2 2023 $ |
20 | .Dt TLS_CONFIG_SET_PROTOCOLS 3 | 20 | .Dt TLS_CONFIG_SET_PROTOCOLS 3 |
21 | .Os | 21 | .Os |
22 | .Sh NAME | 22 | .Sh NAME |
@@ -76,10 +76,6 @@ Possible values are the bitwise OR of: | |||
76 | .Pp | 76 | .Pp |
77 | .Bl -item -offset indent -compact | 77 | .Bl -item -offset indent -compact |
78 | .It | 78 | .It |
79 | .Dv TLS_PROTOCOL_TLSv1_0 | ||
80 | .It | ||
81 | .Dv TLS_PROTOCOL_TLSv1_1 | ||
82 | .It | ||
83 | .Dv TLS_PROTOCOL_TLSv1_2 | 79 | .Dv TLS_PROTOCOL_TLSv1_2 |
84 | .It | 80 | .It |
85 | .Dv TLS_PROTOCOL_TLSv1_3 | 81 | .Dv TLS_PROTOCOL_TLSv1_3 |
@@ -87,7 +83,7 @@ Possible values are the bitwise OR of: | |||
87 | .Pp | 83 | .Pp |
88 | Additionally, the values | 84 | Additionally, the values |
89 | .Dv TLS_PROTOCOL_TLSv1 | 85 | .Dv TLS_PROTOCOL_TLSv1 |
90 | (TLSv1.0, TLSv1.1, TLSv1.2, TLSv1.3), | 86 | (TLSv1.2, TLSv1.3), |
91 | .Dv TLS_PROTOCOLS_ALL | 87 | .Dv TLS_PROTOCOLS_ALL |
92 | (all supported protocols) and | 88 | (all supported protocols) and |
93 | .Dv TLS_PROTOCOLS_DEFAULT | 89 | .Dv TLS_PROTOCOLS_DEFAULT |
@@ -106,8 +102,6 @@ The protocol string is a comma or colon separated list of keywords. | |||
106 | Valid keywords are: | 102 | Valid keywords are: |
107 | .Pp | 103 | .Pp |
108 | .Bl -tag -width "tlsv1.3" -offset indent -compact | 104 | .Bl -tag -width "tlsv1.3" -offset indent -compact |
109 | .It Dv tlsv1.0 | ||
110 | .It Dv tlsv1.1 | ||
111 | .It Dv tlsv1.2 | 105 | .It Dv tlsv1.2 |
112 | .It Dv tlsv1.3 | 106 | .It Dv tlsv1.3 |
113 | .It Dv all | 107 | .It Dv all |