update documentation for timestamp server

- verisign timestamp server is no longer in service
   update docs to point to alternative service
This commit is contained in:
tdyer 2021-01-04 14:27:23 -04:00 committed by Michał Trojnara
parent 1dc209baa8
commit 790abf66da
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ or if you want to add a timestamp as well:
``` ```
osslsigncode sign -certs <cert-file> -key <key-file> \ osslsigncode sign -certs <cert-file> -key <key-file> \
-n "Your Application" -i http://www.yourwebsite.com/ \ -n "Your Application" -i http://www.yourwebsite.com/ \
-t http://timestamp.verisign.com/scripts/timstamp.dll \ -t http://timestamp.digicert.com \
-in yourapp.exe -out yourapp-signed.exe -in yourapp.exe -out yourapp-signed.exe
``` ```
You can use a certificate and key stored in a PKCS#12 container: You can use a certificate and key stored in a PKCS#12 container:

View File

@ -14,7 +14,7 @@ osslsigncode sign -addUnauthenticatedBlob -pkcs12 yourcert.pfx -pass your_passwo
``` ```
# Example 2. Timestamp and add blob to signed file # Example 2. Timestamp and add blob to signed file
osslsigncode.exe add -addUnauthenticatedBlob -t http://timestamp.verisign.com/scripts/timstamp.dll -in your_signed_file.exe -out out.exe osslsigncode.exe add -addUnauthenticatedBlob -t http://timestamp.digicert.com -in your_signed_file.exe -out out.exe
``` ```
``` ```