Tag: pkcs12
Android certificate store
by balleman on Jul.07, 2012, under Computers
Just a few notes on Android certificates – so I don’t have to re-google this in the future.
This is based on Android 2.3.7 / CyanogenMod 7.1.0.
Installing certificates (Settings – Location & Security – Credential Storage – Install from SD card) only looks on the root directory of the SD card for certificates – don’t bother putting them in sub-directories. It also removes the file after installation.
If you have individual key and certificate files that you need to package into a PKCS12 for Android to import, the following works:
openssl pkcs12 -export -inkey Android.key -in Android.crt -certfile ca.crt -out Android.p12
(Courtesy: http://forums.openvpn.net/topic9062.html)