From 10753d669ddd2c2d2c22a2b99de4159b0992ff8d Mon Sep 17 00:00:00 2001 From: MiWCryptoCurrency Date: Thu, 25 Oct 2018 20:51:22 -0400 Subject: [PATCH] qt: Revert "Force TLS1.0+ for SSL connections" fix for upstream bitcoin qt5 openssl issue: https://github.com/bitcoin/bitcoin/pull/14403 --- src/qt/bitcoin.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index cc6e911d9..85d952185 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -50,7 +50,6 @@ #include #include #include -#include #if defined(QT_STATICPLUGIN) #include @@ -573,13 +572,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* >();