Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi my fellow android coders :)

I have a problem with using ssl within my android client.

I created my truststore and my client keystore using this two command:

trust store:

/opt/jdk1.6/bin/keytool -importcert -v -trustcacerts -alias 0 -file gf_cert.crt -keystore res/raw/mytruststore.bks -storetype BKS -provider org.bouncycastle.jce.provider.BouncyCastleProvider -providerpath "bcprov-jdk15-147.jar" -storepass xxx

client key store:

/opt/jdk1.6/bin/keytool -import -v -file gf_cert.crt -alias client -keystore res/raw/clientkeystore.bks -provider org.bouncycastle.jce.provider.BouncyCastleProvider -providerpath "bcprov-jdk15-147.jar" -storetype BKS -storepass xxx

In my client java code a try to load these stores. Here is my code:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    try {

        SSLContext context = SSLContext.getInstance("TLS");                             

        KeyStore keyStore = KeyStore.getInstance("BKS");            
        keyStore.load(getResources().openRawResource(R.raw.clientkeystore), "xxx".toCharArray());                       

        KeyManagerFactory keyManagerFactory = KeyManagerFactory.getInstance("BKS");
        keyManagerFactory.init(keyStore, "xxx".toCharArray());
        KeyStore trustStore = KeyStore.getInstance("BKS");

        trustStore.load(getResources().openRawResource(R.raw.mytruststore), "Magnet1234".toCharArray());
        TrustManagerFactory trustManagerFactory = TrustManagerFactory.getInstance("BKS");
        trustManagerFactory.init(trustStore);            
        context.init(keyManagerFactory.getKeyManagers(), trustManagerFactory.getTrustManagers(), new SecureRandom());
        HttpsURLConnection.setDefaultSSLSocketFactory(context.getSocketFactory());
    } catch (Exception e) {
        Log.e("", "", e);
    }
...

When I try to load the client key store an exception be thrown:

E/        (  567): java.io.IOException: Wrong version of key store.
E/        (  567):  at org.bouncycastle.jce.provider.JDKKeyStore.engineLoad(JDKKeyStore.java:839)
E/        (  567):  at java.security.KeyStore.load(KeyStore.java:689)
E/        (  567):  at com.netbank.androidrest.main.onCreate(main.java:68)
E/        (  567):  at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1123)
E/        (  567):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2364)
E/        (  567):  at     android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2417)
E/        (  567):  at android.app.ActivityThread.access$2100(ActivityThread.java:116)
E/        (  567):  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1794)
E/        (  567):  at android.os.Handler.dispatchMessage(Handler.java:99)
E/        (  567):  at android.os.Looper.loop(Looper.java:123)
E/        (  567):  at android.app.ActivityThread.main(ActivityThread.java:4203)
E/        (  567):  at java.lang.reflect.Method.invokeNative(Native Method)
E/        (  567):  at java.lang.reflect.Method.invoke(Method.java:521)
E/        (  567):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:791)
E/        (  567):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:549)
E/        (  567):  at dalvik.system.NativeStart.main(Native Method)

What do I wrong? Why doesn't it work? I cannot find my mistake.

I read a lot of things on the internet about this issue, but I haven't find any solution yet... Any advise may help...

Thanks a lot!

share|improve this question
Maybe this works for you: stackoverflow.com/questions/5176600/… – pgsandstrom Mar 29 '12 at 13:38
either what sandis said, or "bcprov-jdk15-147.jar" is actually the wrong version for you – Ozzy Apr 15 '12 at 10:44

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.