https://bugs.kde.org/show_bug.cgi?id=368172

--- Comment #23 from masterofex...@hotmail.com ---
The following patch to the android app worked for me:

diff --git a/src/org/kde/kdeconnect/Helpers/SecurityHelpers/SslHelper.java
b/src/org/kde/kdeconnect/Helpers/SecurityHelpers/SslHelper.java
index 5742329..b0ebda0 100644
--- a/src/org/kde/kdeconnect/Helpers/SecurityHelpers/SslHelper.java
+++ b/src/org/kde/kdeconnect/Helpers/SecurityHelpers/SslHelper.java
@@ -209,9 +209,13 @@ public class SslHelper {
         // These cipher suites are most common of them that are accepted by
kde and android during handshake
         ArrayList<String> supportedCiphers = new ArrayList<>();
         if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
-            supportedCiphers.add("TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384");
-            supportedCiphers.add("TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256");
-            supportedCiphers.add("TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA");
+            supportedCiphers.add("TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384"); 
// API 20+
+            supportedCiphers.add("TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256"); 
// API 20+
+            supportedCiphers.add("TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA");      
// API 11+
+        } else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
+            supportedCiphers.add("TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA");  //
API 11+
+            supportedCiphers.add("SSL_RSA_WITH_RC4_128_SHA");            //
API 9+
+            supportedCiphers.add("SSL_RSA_WITH_RC4_128_MD5");            //
API 9+
         } else {
             // Following ciphers are for and due to old devices
             supportedCiphers.add("SSL_RSA_WITH_RC4_128_SHA");


Is there a better way to submit it?

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to