我们正在使用 signtool.exe 摘要选项优化数字签名过程。到目前为止,工作流程如下所示:
- 在客户端上创建摘要:signtool.exe sign /f cert /fd sha256 /dg 。我的文件.dll
- 将MyFile.dll.dig摘要发送到我们的签名服务器。
- 签名服务器上的签名摘要:signtool.exe sign /f cert /fd sha256 /ds MyFile.dll.dig
- 将签名MyFile.dll.dig.signed发送回客户端。
- 在客户端创建签名:signtool.exe sign /di .MyFile.dll
- 在客户端添加时间戳:signtool.exe timestamp /tr http://some_timestamp_server /td sha256 MyFile.dll
有没有办法在签名服务器上执行时间戳?