Skip to main content
  1. Posts/

Resolving the Unavailable Code Sign Default Timestamp Server http://timestamp.verisign.com/scripts/timstamp.dll

·241 words·2 mins· ·

Many programmers may have encountered issues with the Verisign Timestamp server, http://timestamp.verisign.com/scripts/timstamp.dll, becoming unavailable when performing code signing, especially at the start of the new year. The following error may have appeared:

Code Sign failed

The reason is that the default timestamp server for code signing is no longer accessible.

A response on Stack Overflow post provided an answer from Verisign Support:

Their authentication services were sold to Symantec, and the current service provider is Digicert. This server has been deprecated.

They suggest contacting Digicert or finding free timestamp servers online.

This was a user’s response; I didn’t find an official response online, so I decided to send an email to formally confirm. I received a reply shortly after:

Verisign reply

Similar to the previous reply: Years ago, Verisign’s authentication and certificate business was sold to Symantec and has now transitioned to Digicert. You will need to work with your current provider for support or an updated timestamp URL. Please visit http://www.digicert.com for more information.

Now that’s confirmed, let’s confidently proceed with changing to a new timestamp server.

I found that Digicert’s timestamp server is http://timestamp.digicert.com. After switching to the new timestamp server, the digital signature process resumed normally.

In addition to the Digicert URL above, the following URLs can be used as replacements:

However, I didn’t choose any of these; I opted for the official timestamp service and kept it as a backup. What if the “official” provider gets sold again someday?

Xianpeng Shen
Author
Xianpeng Shen
Engineer. Builder. Maintainer.

Related

How to backup Jenkins

·214 words·2 mins
This article explains how to backup Jenkins using the ThinBackup plugin and shell scripts, ensuring that your Jenkins configuration and build data are safely stored.

About Python pip install and versioning

·739 words·4 mins
Explains the behavior of pip install commands with different versioning schemes, including how to handle beta versions and the implications of using --upgrade with specific version numbers.