I have created my own CA certificate and now I want to install it on my Android Froyo device (HTC Desire Z), so that the device trusts my certificate.

Android stores CA certificates in its Java keystore in /system/etc/security/cacerts.bks. I copied the file to my computer, added my certificate using portecle 1.5 and pushed it back to the device.

Now, Android does not seem to reload the file automatically. I have read in several blog posts that I need to restart the device. Doing so results in the file being overwritten with the original one again.

My next try was to install the certificate from SD card by copying it and using the according option from the settings menu. The device tells me that the certificate has been installed, but apparently it does not trust the certificate. Moreover, when I try to copy the keystore to my computer, I still find the original stock cacerts.bks.

So, what is the right way to install my own root CA certificate on an Android 2.2 device as a trusted certificate? Is there a way to do it programmatically?

link|improve this question

You can assume a rooted phone here. :) – Björn Marschollek Dec 22 '10 at 14:35
feedback

4 Answers

up vote 12 down vote accepted
+50

I spent a lot of time trying to find an answer to this (I need Android to see StartSSL certificates). Conclusion: Android 2.1 and 2.2 allow you to import certificates, but only for use with WiFi and VPN. There is no user interface for updating the list of trusted root certificates, but there is discussion about adding that feature. It’s unclear whether there is a reliable workaround for manually updating and replacing the cacerts.bks file.

Details and links: http://www.mcbsys.com/techblog/2010/12/android-certificates/. In that post, see the link to Android bug 11231--you might want to add your vote and query to that bug.

link|improve this answer
An Android developer answered my query re. updating cacerts.bks: "in all releases though 2.3, an OTA is required to update the cacerts.bks on a non-rooted phone." code.google.com/p/android/issues/detail?id=11231#c25. OTA= over-the-air, right? Could this be why your phone keeps reverting to factory cacerts.bks? However if you DO have root access, it seems you should be able to download the source code, add your cert, then build cacerts.bks using the certimport.sh script. android.git.kernel.org/?p=platform/libcore.git;a=tree;f=luni/…. – Mark Berry Dec 22 '10 at 17:11
Thanks. This was obviously not the answer I wanted to hear, but appears to be the correct one. I hoped that there was a way to install a certificate without updating the entire system. I can of course build the new cacerts.bks, with root access I can even replace the old one, but it reverts to the original version with every reboot. Without rebooting, Android seems to be refuse to reload the trusted certificates file. – Björn Marschollek Dec 22 '10 at 18:47
What about installing CA certificates on 3.X and 4.X platforms ? – Alok Kulkarni Apr 2 at 8:46
feedback

If you need your certificate for HTTPS connections you can add the .bks file as a raw resource to your application and extend DefaultHttpConnection so your certificates are used for HTTPS connections.

public class MyHttpClient extends DefaultHttpClient {

private Resources _resources;

public MyHttpClient(Resources resources) {
    _resources = resources;
}

@Override
protected ClientConnectionManager createClientConnectionManager() {
    SchemeRegistry registry = new SchemeRegistry();
    registry.register(new Scheme("http", PlainSocketFactory
            .getSocketFactory(), 80));
    if (_resources != null) {
        registry.register(new Scheme("https", newSslSocketFactory(), 443));
    } else {
        registry.register(new Scheme("https", SSLSocketFactory
                .getSocketFactory(), 443));
    }
    return new SingleClientConnManager(getParams(), registry);
}

private SSLSocketFactory newSslSocketFactory() {
    try {
        KeyStore trusted = KeyStore.getInstance("BKS");
        InputStream in = _resources.openRawResource(R.raw.mystore);
        try {
            trusted.load(in, "pwd".toCharArray());
        } finally {
            in.close();
        }
        return new SSLSocketFactory(trusted);
    } catch (Exception e) {
        throw new AssertionError(e);
    }
}

}

link|improve this answer
Thanks for your reply. Actually, I need to install the certificate in a way such that every application on the device trusts the certificate. The same problem should also exist for some smaller CAs like CAcert, whose certificates are not trusted by default. How do they get their certificates installed? – Björn Marschollek Dec 20 '10 at 17:48
Did you try: Settings -> Security -> Install from SD Card – alexander.egger Dec 20 '10 at 20:11
Also this might be interesting: android.git.kernel.org/?p=platform/packages/apps/… – alexander.egger Dec 20 '10 at 20:17
Yes, already tried this. See my original post. ;) – Björn Marschollek Dec 21 '10 at 12:58
feedback

Here's an alternate solution that actually adds your certificate to the built in list of default certificates: Trusting all certificates using HttpClient over HTTPS

However, it will only work for your application. There's no way to programmatically do it for all applications on a user's device, since that would be a security risk.

link|improve this answer
feedback

What I did to beable to use startssl certificates was quite easy. (on my rooted phone)

I copied /system/etc/security/cacerts.bks to my sdcard

Downloaded http://www.startssl.com/certs/ca.crt and http://www.startssl.com/certs/sub.class1.server.ca.crt

Went to portecle.sourceforge.net and ran portecle directly from the webpage.

Opened my cacerts.bks file from my sdcard (entered nothing when asked for a password)

Choose import in portacle and opened sub.class1.server.ca.crt, im my case it allready had the ca.crt but maybe you need to install that too.

Saved the keystore and copied it baxck to /system/etc/security/cacerts.bks (I made a backup of that file first just in case)

Rebooted my phone and now I can vist my site thats using a startssl certificate without errors.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.