From 10b85c0ee47dfa853bcf49689afc31727994e8a1 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 6 Apr 2021 14:30:32 +0200 Subject: [PATCH] Use correct timestamp server for signing/dating kiwix-desktop. The verisign timestamp server has been deprecated (see https://stackoverflow.com/questions/65541786/is-the-verisign-timestamp-server-down) Let's use the new digicert server as told in https://docs.microsoft.com/en-us/windows/win32/seccrypto/using-signtool-to-sign-a-file --- appveyor/package_kiwix-desktop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor/package_kiwix-desktop.sh b/appveyor/package_kiwix-desktop.sh index aa134a2..3a68bdd 100644 --- a/appveyor/package_kiwix-desktop.sh +++ b/appveyor/package_kiwix-desktop.sh @@ -27,7 +27,7 @@ then cp $MINGW64_EXTRA_DIR/aria2c.exe $KIWIX_DIR cp $MINGW64_EXTRA_DIR/bin/*.dll $KIWIX_DIR - signtool.exe sign -f appveyor/kiwix.pfx -p $win_certificate_password -t http://timestamp.verisign.com/scripts/timestamp.dll -d "Kiwix-desktop application" $KIWIX_DIR/kiwix-desktop.exe + signtool.exe sign -f appveyor/kiwix.pfx -p $win_certificate_password -t http://timestamp.digicert.com -d "Kiwix-desktop application" $KIWIX_DIR/kiwix-desktop.exe 7z a -tzip $KIWIX_ARCHIVES_DIR/$KIWIX_ARCH_NAME $KIWIX_DIR fi