Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to take a public key .cer file generated from java keytool command like this:

"keytool -export -alias privatekey -file publickey.cer -keystore privateKeys.store"

and import it into a new, empty java keystore like this:

"keytool -import -alias publiccert -file publickey.cer -keystore publicCerts.store"

except I want to do the import programmatically, using JSSE.

Stack Overlords, work your magic! Thanks!

share|improve this question
JSSE may not be the right acronym. JCE perhaps? Whatever the Java API that deals with keystores is called! :) – J P Jun 17 '09 at 0:20
Thanks guys. I would upvote you but I don't have enough credit to do so yet. Following Reginaldo's advice, I figured it out after looking at the decompiled KeyTool source. I did something similar to this: Certificate cert = CertificateFactory.getInstance("X509").generateCertificate(new FileInputStream(certFileLocation)); keyStore.setCertificateEntry("publickey", cert); – J P Jun 18 '09 at 0:27

2 Answers

Look at the KeyStore class in Java. Here is a class which might give you some hints. You might require the free BouncyCastle crypto provider to operate all of its function

share|improve this answer

If you use jad to decompile the tools.jar that comes with Sun JDK, you will see exactly how it works.

Unzip the tools.jar in a folder and use the following command to decompile all classes inside that jar.

for i in $(find . -name "*.class" | perl -ple 's/\.class$//g'); do jad -p $i.class > $i.java; done

The keytool source can be seen in class sun.security.tools.KeyTool

share|improve this answer

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.