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

I am trying to connect to an SSL server which requires me to authenticate myself. In order to use SSL over Apache MINA I need a suitable JKS file. However, I have only been given a .PEM file.

How would I go about creating a JKS file from a PEM file?

share|improve this question

4 Answers

up vote 2 down vote accepted

May be this link could be helpful:

http://www.agentbob.info/agentbob/79-AB.html

share|improve this answer
Not as simple as I was hoping, but it does the job - many thanks. – jwoolard Jan 26 '10 at 14:14
4  
Whilst this may theoretically answer the question, we would like you to include the essential parts of the linked article in your answer, and provide the link for reference. Failing to do that leaves the answer at risk from link rot. – Kev Nov 17 '11 at 23:22

If you only want to import a certificate in PEM format into a keystore, keytool will do the job:

keytool -import -alias alias -keystore cacerts -file cert.pem

share|improve this answer
2  
If I go like this I get an error: keytool error: java.lang.Exception: Input not an X.509 certificate – frandevel Jan 19 '12 at 8:42
If it's really a X.509 format certificate, that command is working... – Anthony O. Dec 21 '12 at 14:41
@frandevel, this error can be caused by the PEM input file having a header above the --- BEGIN delimiter or having multiple PEMs in one file or both. Either remove all extraneous data and feed in each PEM in one at a time or use my tool, as detailed in my answer. – Fuzzyfelt Apr 15 at 14:39
Thanks @Fuzzyfelt, I'll take a look – frandevel Apr 16 at 16:01

You can follow what's written on that site.

First, convert your certificate in a DER format :

openssl x509 -outform der -in certificate.pem -out certificate.der

And after, import it in the keystore :

keytool -import -alias your-alias -keystore cacerts -file certificate.der
share|improve this answer

I've developed http://code.google.com/p/java-keyutil/ which imports PEM certificates straight into a Java keystore. Its primary purpose is to import a multi-part PEM Operating System certificate bundles such as ca-bundle.crt. These often includes headers which keytool cannot handle

</self promotion>
share|improve this answer
Not a bad toy project, but keytool already does all this for you (and more). (By the way, you should close your FileOutputStream, and close your I/O streams in finally, if an exception happens.) – Bruno Jul 26 '12 at 13:11
Hi Bruno, thanks for tips. The real use case is to import all entries of /etc/pki/tls/certs/ca-bundle.crt (RHEL/CentOS) in one go. AFAIK, keytool will only import the first entry. I've seen a number of people do this differently but it usually involves invoking keytool multiple times for each cert. Ubuntu has an update script which does exactly this, except that Ubuntu stores its certs in a directory. I'll be adding support for directories in the near future. Thanks again for reviewing the code. – Fuzzyfelt Jul 27 '12 at 13:23

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.