summarylogtreecommitdiffstats
path: root/qt.patch
blob: 3aff69a51c40d732679cacc7224b4cad6d1cf6b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp
index d3ec67e4418b..edb6e9bc8173 100644
--- a/src/qt/bitcoin.cpp
+++ b/src/qt/bitcoin.cpp
@@ -49,7 +49,6 @@
 #include <QLocale>
 #include <QMessageBox>
 #include <QSettings>
-#include <QSslConfiguration>
 #include <QStringList>
 #include <QThread>
 #include <QTimer>
@@ -608,13 +608,6 @@ int main(int argc, char *argv[])
 #ifdef Q_OS_MAC
     QApplication::setAttribute(Qt::AA_DontShowIconsInMenus);
 #endif
-#if QT_VERSION >= 0x050500
-    // Because of the POODLE attack it is recommended to disable SSLv3
-    // (https://disablessl3.com/), so set SSL protocols to TLS1.0+.
-    QSslConfiguration sslconf = QSslConfiguration::defaultConfiguration();
-    sslconf.setProtocol(QSsl::TlsV1_0OrLater);
-    QSslConfiguration::setDefaultConfiguration(sslconf);
-#endif

     // Register meta types used for QMetaObject::invokeMethod
     qRegisterMetaType<bool *>();