Enable 3DES by default

This commit is contained in:
M66B 2020-05-24 19:11:39 +02:00
parent f3489df28c
commit c63f2320da
1 changed files with 10 additions and 0 deletions

View File

@ -800,6 +800,16 @@ public class EmailService implements AutoCloseable {
ciphers.add(cipher);
}
sslSocket.setEnabledCipherSuites(ciphers.toArray(new String[0]));
} else {
List<String> ciphers = new ArrayList<>();
ciphers.addAll(Arrays.asList(sslSocket.getEnabledCipherSuites()));
for (String cipher : sslSocket.getSupportedCipherSuites())
if (cipher.contains("3DES")) {
// Some servers support 3DES and RC4 only
Log.i("SSL enabling cipher=" + cipher);
ciphers.add(cipher);
}
sslSocket.setEnabledCipherSuites(ciphers.toArray(new String[0]));
}
Log.i("SSL protocols=" + TextUtils.join(",", sslSocket.getEnabledProtocols()));