Can I remove a digital signature from a DLL?

后端 未结 6 1931
误落风尘
误落风尘 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:17

    It's fairly easy to remove the signature from a .dll file using the ImageRemoveCertificate API.

    You don't have any language specified in your tags but this article shows how to implement it in C#. Remove digital signature from a file using C#

    Other than that, if you are looking for a simple tool to do the work for you, you can use FileUnsigner.

提交回复
热议问题