English 中文(简体)
在C#解决方案中创建PFX文件
原标题:Creating a PFX file in C# solution

我不小心删除了PFX文件。现在我想知道如何再次创建PFX文件。

最佳回答

PFX文件是一个包含加密私钥的文件。它通常用于代码签名,从而实现程序集的可信执行。

如果您删除了它(它不在回收站中,也不可从源代码管理服务器获得),则无法恢复它或它包含的密钥。

您必须创建一个新的程序集,这将更改程序集的公钥。在项目的“属性”中的“签名”选项卡下执行此操作。

问题回答

如果您的项目不受源代码管理,并且没有备份,则必须通过“项目属性”页面的“签名”选项卡创建一个新的、不同的强名称密钥文件。请注意,执行此操作后,程序集的公钥令牌将不再相同!

你不能重新生成PFX文件,除非你有原始的公共&;生成它的私钥。

这些文件可以分别存储,通常分别作为.CER和.PVK文件,因此您可以查看是否有它们的副本。

转到您的项目属性,单击“签名”选项卡,启用“对ClickOnce清单进行签名”,然后单击“创建测试证书”。如果你想生成一个snk文件,你可以通过底部的“选择一个强名称密钥文件”组合框来完成。

请注意,VisualStudio生成的pfx的使用寿命很短(我认为是一年),因此您应该生成自己的pfx。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签