I want to sign a JAR file with timestamp server and using JDK1.6.0_131 for SHA-256 algorithm as below.
jarsigner -sigalg SHA256withRSA -tsa http://sha256timestamp.ws.symantec.com/sha256/timestamp -keystore mykeystore MyApplet.jar cert
The error message is as below.
Warning:
Using SHA-1 digest algorithm for timestamp generation. See the -tsadigestalg option.
jarsigner: unable to sign jar: java.net.ConnectException: Connection refused (Connection refused)
What is the option value for -tsadigestalg? Thanks.