验证可执行文件是否已签名(signtool 用于对该 exe 进行签名)
在我的应用程序中,我需要验证它是否已签名。如果已签名,则继续执行;如果未签名,则退出应用程序。 Signtool 将用于对应用程序进行签名。 有没有 C# 代码可以做到这一点?
In my application I need to verify whether it's signed or not. If it's signed continue the execution and exit the application if not. The signtool will be used to sign the application.
Is there any C# code to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是一个执行此操作的实用方法:
Here is a utility method that does it:
我建议您使用“CryptUIWizDigitalSign”API。 此链接可以作为参考。
I would suggest you use the 'CryptUIWizDigitalSign' API. This link can be used as a reference.