https://bugs.kde.org/show_bug.cgi?id=368172
--- Comment #8 from masterofex...@hotmail.com --- Sifting through the Android code, it looks like the modern ciphers are only available for Lollipop or better: 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"); } else { // Following ciphers are for and due to old devices supportedCiphers.add("SSL_RSA_WITH_RC4_128_SHA"); supportedCiphers.add("SSL_RSA_WITH_RC4_128_MD5"); } Perhaps the TLS ciphers should always be available and the SSL ciphers are only added when less than Lollipop. -- You are receiving this mail because: You are watching all bug changes.