diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-07-06 20:06:16 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-07-06 20:06:16 +0200 |
| commit | 15e26a6a9afe299b9ca6fced73b876644365879b (patch) | |
| tree | 1a4812f523d08c41d00033cf4e23c8be53a14cb2 /src/qt/bitcoin.cpp | |
| parent | Merge pull request #6365 (diff) | |
| download | discoin-15e26a6a9afe299b9ca6fced73b876644365879b.tar.xz discoin-15e26a6a9afe299b9ca6fced73b876644365879b.zip | |
qt: Force TLS1.0+ for SSL connections
Diffstat (limited to 'src/qt/bitcoin.cpp')
| -rw-r--r-- | src/qt/bitcoin.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 8740b98b7..07250e72c 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -48,6 +48,7 @@ #include <QThread> #include <QTimer> #include <QTranslator> +#include <QSslConfiguration> #if defined(QT_STATICPLUGIN) #include <QtPlugin> @@ -515,6 +516,13 @@ 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* >(); |