pf » Signing Jar Files (converting pvk to p12)
Signing Jar Files (converting pvk to p12)
We recently renewed our code signing certificate for signing java applets, this is the first year we have had to renew it, and the process is a bit different from when we generated it. When we first received the key we did it with a CSR, and the java keytool. So when their renewal process had us generate a Microsoft Authenticode pvk private key, I was a bit confused as to what to do with it. It takes a bit of work to generate a PKCS12 file that java's jarsigner can use, so I'm blogging this so I will remember what to do next year, and also to help out anyone else in this situation.
You will need two files:
- pvk file (generated by IE, and stored in c:\mykey.pvk by default)
- spc file (the cert)
Now to generate a PKCS12 pfx file you need Microsoft's pvkimprt tool (If I could have found this tool sooner, I could have saved myself a lot of time playing with openssl, and the ported pvk tool!). So install and run the tool:
pvkimprt c:\mycert.spc c:\mykey.pvk
Import it into your personal keystore, so we can export it as a pfx file:
- Start-Run: mmc.exe
- Add Snapin: Certificates
- Properties: Add a friendly name to the cert (this will be the alias)
- Export a pfx file
Now that you have your pfx file, your going to need to guess what import and export it again (the docs state that the pfx file will only work on jdk 1.4, I had no luck, so I generated a p12 file as shown below).
- Open up Netscape/Mozilla/Firefox Certificate Manager (Tools-Options-Advanced-Certificates in Firefox)
- Import your pfx file
- Export a p12 file
And after that process you will have a certificate you can use to sign jar files, and possibly start your own import/export business.
Here's the KB article from Thawte, that had I been able to find on my own would have saved me lots of time: http://kb.thawte.com/thawte/thawte/esupport.asp?id=vs26925
And here's the ant task I use to sign jar files:
<target name="signjar" depends="jar">
<input
message="Please enter keystore password:"
addproperty="keypass" />
<signjar jar="${lib}/yourJar.jar" storetype="pkcs12"
keystore="${keystore}/yourkey.p12" alias="Your Alias"
storepass="${keypass}"/>
</target>
This process should be a lot easier, I always hate dealing with certificates. I must say however that aside from having a name I can neither pronounce, nor spell consistently Thawte has always been helpful when I contact them.
Related Entries
- Signing and Encypting Email - April 27, 2004
- Making Jar files Run - November 14, 2003
- Moving SSL Certs from IIS to Apache - August 27, 2003
Just out of interest - under 1.4.2_05 the ant script works fine - under 1.3.1_12 it fails with:
[signjar] Signing JAR: C:\work\test.jar [signjar] jarsigner error: java.lang.RuntimeException: unable to instantiate keystore class: pkcs12 not found
Has anyone seen/solved this issue?
However, I did find a way to import a pkcs12 store into a jks store. You will need java 1.4 to perform the operation, but the resulting keystore is 1.3 compatible.
http://java.sun.com/webservices/docs/1.4/tutorial/doc/XWS-Security7.html
0. You should have a .spc(Certificate) file and a .pvk(Key) file 1. Download pvkimprt.exe from http://office.microsoft.com/downloads/2000/pvkimprt.aspx 2. To generate a .pfx file run: pvkimprt -PFX <spc-file> <pvk-file> type in the password and give a pathname 3. Import this file from Firefox 4. Export the certificate from Firefox to a .p12 file 5. This file can be used with jarsigner 6. We also need to know the alias of the .p12 file, so copy the .p12 file to the Java bin directory and run: keytool -list -storetype pkcs12 -keystore mycert-p12.p12 7. type in the password 8. Then you will see output like this:
Keystore type: pkcs12 Keystore provider: SunJSSE
Your keystore contains 1 entry
xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx, Apr 26, 2006, keyEntry, Certificate fingerprint (MD5): hh:hh:hh:hh:hh:hh:hh:hh:hh:hh:hh:hh:hh:hh:hh:hh
9. The xxxx-xxx... number is the alias for the key
10. to sign a jar do:
jarsigner -storetype pkcs12 -keystore mycert-p12.p12 myjar.jar "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx"
I used these instructions and TJ's to sign XPI files for firefox.
Thanks again!
- CFSCRIPT Cheatsheet
- 3 New Image Effects for ColdFusion 8
- Googlebot to Submit Web Forms
- ColdFusion 8 Update 1 Fixes some Image Processing Quirks
- 10 Most Useful Image Functions in ColdFusion 8
- Speaking at NYC CFUG This Week
- Adobe AIR Tutorial for HTML / JavaScript Developers
- INFORMATION_SCHEMA Support in MySQL, PostgreSQL
RSS
add to del.icio.us
Pete Freitag is a software engineer, and web developer located in










