I have a code signing certificate that is installed in my MMC Certificates Snapin in Windows.
When signing exes I use a command like this:
signtool sign /v /sm /s my /n "NAME_ISSUED_TO" /t http://timestamp.verisign.com/scripts/timestamp.dll
This locates the correct certificate from my certificate store and signs the exe without needing the pfx file on disk.
Is there a way to do something similar with Java?
I have had it working with these instructions but this requires a pfx file on disk.
Thanks, Alan