Rod Hynes 7 лет назад
Родитель
Сommit
ef53249ff7
1 измененных файлов с 7 добавлено и 0 удалено
  1. 7 0
      psiphon/tlsDialer.go

+ 7 - 0
psiphon/tlsDialer.go

@@ -515,3 +515,10 @@ func verifyServerCerts(conn *utls.UConn, hostname string) error {
 	}
 	return nil
 }
+
+func init() {
+	// Favor compatibility over security. CustomTLSDial is used as an obfuscation
+	// layer; users of CustomTLSDial, including meek and remote server list
+	// downloads, don't depend on this TLS for its security properties.
+	utls.EnableWeakCiphers()
+}