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.

I am using keystore to protect the private key in a file using the following code

ks.setKeyEntry("kk1", pr, pass, cert1);//ks is obj of keystore,
                                       //kk1 is alias,
                                       //pr-->is private key,
                                       //pass->is the password to protect that key,
                                       //cert1-->is the certificate chain..

Later i want to store it in the file,uisng store function. My problem is

  (actual argument java.security.cert.X509Certificate cannot be converted to java.security.cert.Certificate[] by method invocation conversion)

I have given cert1 as

 X509V3Create obj=new   X509V3Create();  //it is my own class
 X509Certificate cert1  = obj.generateV3Certificate(pair);
 //in this method I set all the certificate parameters like version,alg etc..,pair is obj of key pair...

I am getting the error which I mentioned above..I can't set that parameter to null(it gives null pointer exception)

What should I pass as argument???

share|improve this question

1 Answer

Try this:

java.security.cert.Certificate[] certificateChain = new java.security.cert.Certificate[]{cert1}
ks.setKeyEntry("kk1", pr, pass, certificateChain);
share|improve this answer
No,it is not working..Error is-->incompatible types required: java.security.Certificate found: java.security.cert.X509Certificate – user1168647 Feb 8 '12 at 4:28
You are importing the deprecated java.security.Certificate somewhere. Change that to java.security.cert.Certificate or be explicit about using java.security.cert.Certificate (as in the modified answer). – Rasmus Faber Feb 8 '12 at 8:31

Your Answer

 
discard

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

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