Amit
Amit

Reputation: 3990

AWS SSL Certificates with old Android phones

I recently updated the SSL certificates of my app to use AWS certificates behind a load balancer, however, ever since then, my old android phone, running ICS is now getting this error: ssl=0x56ded8d0 NativeCrypto_SSL_do_handshake ret=-1 errno=104 sslError=5 timeout_millis=2500. Not really sure what's causing this issue. The app works just fine on new android phones. All devices were tested with the same wifi network, so it's not a network issue for sure.

Upvotes: 1

Views: 821

Answers (1)

nandsito
nandsito

Reputation: 3852

Android ICS does not support TLSv1.1 nor TLSv1.2, and supports only old cipher suites as well. https://developer.android.com/reference/javax/net/ssl/SSLSocket.html

Upvotes: 1

Related Questions