使用cmd签署dll
我有一个 dll (project.dll),我想使用 cmd 对该 dll 进行签名,因为我没有它的源代码。
是否可以在没有源代码的情况下对 dll 进行签名?
如果是,请告诉我该怎么做。
I have a dll (project.dll) I want to sign the dll using cmd as I don't have source code of it.
Is it possible to sign a dll without sourcecode.
If yes, please let me know how to do it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只能在编译程序集后对其进行签名。拥有源代码是无关紧要的。
使用
sn.exe
和 < a href="http://msdn.microsoft.com/en-us/library/c405shex.aspx" rel="nofollow">al.exe
工具。请参阅此处如何使用它们。
You can only sign assemblies after they have been compiled. Having the source code is irrelevant.
Use the
sn.exe
, andal.exe
tools.See how to use them here.