Comparison

util/sslconfig.lua @ 9584:2860f8dabf35 0.11

util.sslconfig: Recognise TLS 1.3 as a protocol version This enables it to understand protocol = "tlsv1_3+"
author Kim Alvefur <zash@zash.se>
date Sun, 28 Oct 2018 16:12:30 +0100
parent 8555:4f0f5b49bb03
child 10920:c171b4c59bd1
comparison
equal deleted inserted replaced
9583:4552ba1333ac 9584:2860f8dabf35
68 finalisers.curveslist = finalisers.ciphers; 68 finalisers.curveslist = finalisers.ciphers;
69 69
70 -- protocol = "x" should enable only that protocol 70 -- protocol = "x" should enable only that protocol
71 -- protocol = "x+" should enable x and later versions 71 -- protocol = "x+" should enable x and later versions
72 72
73 local protocols = { "sslv2", "sslv3", "tlsv1", "tlsv1_1", "tlsv1_2" }; 73 local protocols = { "sslv2", "sslv3", "tlsv1", "tlsv1_1", "tlsv1_2", "tlsv1_3" };
74 for i = 1, #protocols do protocols[protocols[i] .. "+"] = i - 1; end 74 for i = 1, #protocols do protocols[protocols[i] .. "+"] = i - 1; end
75 75
76 -- this interacts with ssl.options as well to add no_x 76 -- this interacts with ssl.options as well to add no_x
77 local function protocol(config) 77 local function protocol(config)
78 local min_protocol = protocols[config.protocol]; 78 local min_protocol = protocols[config.protocol];