diff options
author | Kim Alvefur <zash@zash.se> | 2020-06-07 02:14:55 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-06-07 02:14:55 +0200 |
commit | 733df3d5d71cadace023cf5a2b0ef13ecb83650f (patch) | |
tree | bc793ef4ac50503990f3b3590bbc3b46811f2a28 | |
parent | e57ef01055be671f49f57808a0e3f2469f83ab3b (diff) | |
download | prosody-733df3d5d71cadace023cf5a2b0ef13ecb83650f.tar.gz prosody-733df3d5d71cadace023cf5a2b0ef13ecb83650f.zip |
util.sslconfig: Process TLS 1.3-specific cipher list
Same way as with other cipher list options
-rw-r--r-- | util/sslconfig.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/sslconfig.lua b/util/sslconfig.lua index a5827a76..6074a1fb 100644 --- a/util/sslconfig.lua +++ b/util/sslconfig.lua @@ -67,6 +67,9 @@ end -- Curve list too finalisers.curveslist = finalisers.ciphers; +-- TLS 1.3 ciphers +finalisers.ciphersuites = finalisers.ciphers; + -- protocol = "x" should enable only that protocol -- protocol = "x+" should enable x and later versions |