获取用于 Visual Studio 签名的受信任证书

发布于 2024-10-18 03:33:56 字数 306 浏览 3 评论 0 原文

我需要一些有关代码签名证书的信息。我不知道它们是如何工作的,谷歌搜索并没有真正消除我的任何困惑。

我的 IT 部门愿意帮助我设置它,但他们不想花任何时间弄清楚如何设置,并要求我这样做。

所以我需要知道的是,我到底需要什么,使用不会更改且可以被我们的内部系统信任的永久密钥在 Visual Studio(本例中为 C#)中签署我的代码。

我尝试过使用我们公司颁发的证书,但它说它没有私钥。 IT 部门表示他们可以发布代码签名模板,但他们也没有在其中看到任何私钥,并且总体上不知道它的作用。

任何有关此的背景知识以及如何设置它将不胜感激。

I need some information about code-signing certificates. I have no idea how they work, and googling has not really cleared any confusion i had.

My IT department are willing to help me set it up, but they do not want to spend any time figuring out how, and asked me to do it.

So what i need to know is, exactly what do i need, to sign my code in Visual Studio (C# in this case), with a permanent key that does not change and can be trusted by our internal systems.

I have tried using our company issuing certificate, but it says it has no private key.
IT says they can issue a code-signing template, but they didn't see any private key in that either, and in general had no idea what it did.

Any background knowledge about this, and how to set it up would be appreciated.

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

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

发布评论

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

评论(2

难忘№最初的完美 2024-10-25 03:33:56

我不认为有一种方法可以得到一个不会超时的方法。要在 Windows 上签名,您需要 Verisign 代码签名证书。 Microsoft 的代码签名指南非常详细有用。从开发人员的角度来看,一旦您拥有了证书的 PFX 文件,那么您所需要的就是 SignTool 程序。

signtool /n "My company, inc." myfile.exe

I don't think there's a way of getting one that doesn't time out. For signing on Windows you'll need a Verisign code signing certificate. Microsoft's guide to code signing is very useful. From a developer perspective, once you have the PFX file for the certificate then all you need is the SignTool program.

signtool /n "My company, inc." myfile.exe
永言不败 2024-10-25 03:33:56

您需要从 Verisign 或其他类似提供商处购买代码签名证书,然后用该证书对您的程序集进行签名。

You need to buy a code-signing certificate from Verisign or other similar providers and then sign your assemblies with that.

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