signtool failing to dual sign SHA2 and SHA1 with timestamps

前端 未结 7 1900
一个人的身影
一个人的身影 2020-12-08 00:45

We need to dual sign our binaries with SHA1 and SHA2 using signtool.exe, our certificate supports 256-bit SHA2.

Using the Windows 8 SDK\'s signtool:

e.g.:

相关标签:
7条回答
  • 2020-12-08 01:52

    The issue is actually way simpler.

    The problem is with the time stamp server.

    Instead of using signtool.exe with this

    /t http://timestamp.comodoca.com 
    

    You need to use it like this for SHA1

    /tr http://timestamp.comodoca.com /td sha1
    

    And for SHA256

    /tr http://timestamp.comodoca.com/?td=sha256 /td sha256
    
    0 讨论(0)
提交回复
热议问题