1
vote
0answers
20 views

Install CA on android Using Intent not works on android 2.3

I am trying to add a CA certificate programatically in a HTC Desire S device Android version 2.3.5 and HTC Sense version 3.0. I am using the following code: Intent intent = new ...
1
vote
1answer
98 views

Adding custom CA to android

How can I add an own CA Certificat in android? It seems only possible by using the global key manager. But I don't want users to import this key first. It doesn't have to be installed globaly, only ...
1
vote
1answer
422 views

SocketTimeoutException after converting from http to https in android app

I am getting some problems after trying to convert my android app to use SSL to transport information between my android app and web server. (SocketTimeOutException) I have bought a Positive SSL ...
7
votes
1answer
2k views

Android: List of available trusted root certificates

Is there a android developer page that lists all of the trusted root CAs? I know I can just pull the file, and list them using keytool - looking for a published web page.
1
vote
1answer
828 views

android: how to accept CA certificate

I am trying to make a secure connection to a OCS server through https in android. I found the EasySSLFactory and EasyX509TrustManager classes to make android trust the certificate but I don't know ...