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 | b50db460865f3f0a1b1dbad90ee3bc5fbcec3a8f (patch) | |
tree | bc793ef4ac50503990f3b3590bbc3b46811f2a28 | |
parent | fb5e6faad6782d9b034e7b19656c944529d5d538 (diff) | |
download | prosody-b50db460865f3f0a1b1dbad90ee3bc5fbcec3a8f.tar.gz prosody-b50db460865f3f0a1b1dbad90ee3bc5fbcec3a8f.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 |