Does anyone have detailed, step by step, instructions for extracting encryption keys from 509 certificates, and then storing them inside an encrypted jks file?
|
feedback
|
|
The Java VM installation includes a tool for performing this exact type of work - on windows systems it is called keytool.exe. Depending no the situation, there may be multiple steps to the process. For many cases, the two steps in this example will do:
keytool -import -keystore keystore.jks -file .crt The certificate can be provided in a number of different formats. Full documentation is available on Sun's site, here: http://java.sun.com/javase/6/docs/technotes/tools/solaris/keytool.html | |||
|
feedback
|