Răsfoiți Sursa

Uncommit accidentally commited edit to cipher list

David Baker 8 ani în urmă
părinte
comite
f28643cea9
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      synapse/crypto/context_factory.py

+ 1 - 1
synapse/crypto/context_factory.py

@@ -43,7 +43,7 @@ class ServerContextFactory(ssl.ContextFactory):
             context.use_privatekey(config.tls_private_key)
 
         context.load_tmp_dh(config.tls_dh_params_path)
-        context.set_cipher_list("!ADH:HIGH+kEDH:!AECDH:HIGH+kEECDH:HIGH")
+        context.set_cipher_list("!ADH:HIGH+kEDH:!AECDH:HIGH+kEECDH")
 
     def getContext(self):
         return self._context