core/certmanager.lua
changeset 12154 653a48b5a25b
parent 12124 0fcd80a55f15
child 12200 b05e0b422ff7
equal deleted inserted replaced
12153:bbbf0dd90b6d 12154:653a48b5a25b
   249 		"!PSK",        -- Pre-Shared Key - not used for XMPP
   249 		"!PSK",        -- Pre-Shared Key - not used for XMPP
   250 		"!SRP",        -- Secure Remote Password - not used for XMPP
   250 		"!SRP",        -- Secure Remote Password - not used for XMPP
   251 		"!3DES",       -- 3DES - slow and of questionable security
   251 		"!3DES",       -- 3DES - slow and of questionable security
   252 		"!aNULL",      -- Ciphers that does not authenticate the connection
   252 		"!aNULL",      -- Ciphers that does not authenticate the connection
   253 	};
   253 	};
   254 	dane = configmanager.get("*", "use_dane");
   254 	dane = luasec_has.capabilities.dane and configmanager.get("*", "use_dane") and { "no_ee_namechecks" };
   255 }
   255 }
   256 
   256 
   257 local mozilla_ssl_configs = {
   257 local mozilla_ssl_configs = {
   258 	-- https://wiki.mozilla.org/Security/Server_Side_TLS
   258 	-- https://wiki.mozilla.org/Security/Server_Side_TLS
   259 	-- Version 5.6 as of 2021-12-26
   259 	-- Version 5.6 as of 2021-12-26