是否可以使用不同的密钥对对已签名的 .net dll 进行签名?

发布于 2024-09-09 01:38:18 字数 180 浏览 2 评论 0原文

我的同事部署了一个dll,他用他机器上生成的密钥进行了签名。现在我需要在我的项目中使用该DLL,所以我需要注销该DLL,我在我的计算机上生成了一个密钥对,然后尝试注销它使用 sn.exe -R 或 sn.exe -Vr ,但总是失败。

是否可以使用不同的密钥对对已签名的 .net dll 进行签名?

提前致谢 !

My colleague deploy a dll and he signed with the key generated on his machine.Right now I need to use the DLL in my project, so I need to resign the DLL, I generate a key pair on my computer, then try to resign it with sn.exe -R or sn.exe -Vr , but always failed.

Is it possible to resign a signed .net dll with a different key pair?

Thanks in advance !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

活泼老夫 2024-09-16 01:38:18

请参阅:如何签署 .NET具有强名称的程序集 DLL 文件?

Ryan Farley 的链接文章 建议:

将 DLL 反汇编为 IL,然后
将 IL 重新组装回 DLL 并
包含新的密钥文件。

See: How to sign a .NET Assembly DLL file with a Strong Name?

Ryan Farley's linked article suggests:

disassemble the DLL to IL and then
reassemble the IL back into a DLL and
include the new key file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文