I have several Eclipse plugins that are part of the function. We would like to apply signatures to these plugins when updating the update site.
I see the JAR Signing tab when exporting a separate plugin, but I do not see anything like this in the settings of the update site project.
In addition, the textbooks I read use self-signed certificates. Can someone point me to instructions for using Verisign certificates (i.e. * .pfx files)?
Can anyone help?
Thanks Alan
Edit: I answered Kana's answer as an answer, because it is very similar to the steps I took and was an inspiration. I actually followed these instructions to sign banners because it was based on pfx files: https://support.comodo.com/index.php?_m=knowledgebase&_a=viewarticle&kbarticleid=1072
Step 1: Run the following command to view the certificate information (substituting the file name with your own):
keytool -list -v -storetype pkcs12 -keystore [Filename].pfx
Step 2: Highlight the top of the output and mark the name Alias ββName .
Step 3: Sign each jar file with the following command (substituting file names and an alias name for yours):
jarsigner -storetype pkcs12 -keystore [Filename].pfx [Filename].jar "[AliasName]"
Now I need to come up with a way to control / automate the process.
source share