Can I remove a digital signature from a DLL?

后端 未结 6 1929
误落风尘
误落风尘 2020-12-29 05:01

My installer build \"signs\" a DLL using a Code Signing certificate during the build process.

I\'ve noticed that if I try to build twice in succession, the second b

6条回答
  •  执念已碎
    2020-12-29 05:06

    Another possible option is to switch to the SignTool.exe. It comes with the Windows SDK and signing a binary that has already been signed does not generate an error. I use signtool.exe in my build process and haven't any difficulties with it, even when something is already signed.

    Also, check out the question What's the main difference between signcode.exe and signtool.exe?

提交回复
热议问题