Do not use TLS_FALLBACK_SCSV

closes #2937

Thanks to @tmolitor-stud-tu for explaining the situation in
https://github.com/guardianproject/NetCipher/pull/74
This commit is contained in:
Daniel Gultsch 2018-05-26 10:22:40 +02:00
parent 1510958278
commit fd7a5c605a
1 changed files with 1 additions and 0 deletions

View File

@ -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()]);
}