From 790abf66dae4b60064e0a40c5fd31dfa1d7c2c3b Mon Sep 17 00:00:00 2001 From: tdyer Date: Mon, 4 Jan 2021 14:27:23 -0400 Subject: [PATCH] update documentation for timestamp server - verisign timestamp server is no longer in service update docs to point to alternative service --- README.md | 2 +- README.unauthblob.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7966e7e..4b4efca 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ or if you want to add a timestamp as well: ``` osslsigncode sign -certs -key \ -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 ``` You can use a certificate and key stored in a PKCS#12 container: diff --git a/README.unauthblob.md b/README.unauthblob.md index c1cbe27..e1532bf 100644 --- a/README.unauthblob.md +++ b/README.unauthblob.md @@ -14,7 +14,7 @@ osslsigncode sign -addUnauthenticatedBlob -pkcs12 yourcert.pfx -pass your_passwo ``` # 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 ``` ```