aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2018-05-26 22:59:18 +0200
committerChristian Schneppe <christian@pix-art.de>2018-05-26 22:59:18 +0200
commit3cb9cd0a5df5400e25cd9bcac4593e39b2579116 (patch)
tree4873ce1ef4a9c57aaec29e43d51e3ed7e9a460d4
parenta554be18a60380d624fc9c65416368775cba9bae (diff)
Do not use TLS_FALLBACK_SCSV
-rw-r--r--src/main/java/de/pixart/messenger/utils/CryptoHelper.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/de/pixart/messenger/utils/CryptoHelper.java b/src/main/java/de/pixart/messenger/utils/CryptoHelper.java
index cd7e72746..8e70e7bb7 100644
--- a/src/main/java/de/pixart/messenger/utils/CryptoHelper.java
+++ b/src/main/java/de/pixart/messenger/utils/CryptoHelper.java
@@ -130,6 +130,7 @@ public final class CryptoHelper {
cipherSuites.retainAll(platformCiphers);
cipherSuites.addAll(platformCiphers);
filterWeakCipherSuites(cipherSuites);
+ cipherSuites.remove("TLS_FALLBACK_SCSV");
return cipherSuites.toArray(new String[cipherSuites.size()]);
}