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?
|
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? |
|||
|
|
|
May be this link could be helpful: |
|||||||
|
|
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 |
|||||||||||
|
|
You can follow what's written on that site. First, convert your certificate in a DER format :
And after, import it in the keystore :
|
|||
|
|
|
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
|
|||||
|