util.sslconfig: Recognise TLS 1.3 as a protocol version

This enables it to understand protocol = "tlsv1_3+"
This commit is contained in:
Kim Alvefur 2018-10-28 16:12:30 +01:00
parent 5914d0d695
commit ed25cd6f85

View file

@ -70,7 +70,7 @@ finalisers.curveslist = finalisers.ciphers;
-- protocol = "x" should enable only that protocol
-- protocol = "x+" should enable x and later versions
local protocols = { "sslv2", "sslv3", "tlsv1", "tlsv1_1", "tlsv1_2" };
local protocols = { "sslv2", "sslv3", "tlsv1", "tlsv1_1", "tlsv1_2", "tlsv1_3" };
for i = 1, #protocols do protocols[protocols[i] .. "+"] = i - 1; end
-- this interacts with ssl.options as well to add no_x