为什么要在.NET中使用“.pfx”文件

时间:2021-02-01 19:00:57

What is the ".pfx" extension used for in .NET?

什么是.NET中使用的“.pfx”扩展名?


Why does it ask for a password when the solution is being built?

为什么在构建解决方案时要求输入密码?

2 个解决方案

#1


20  

A file containing an encrypted private key. It's probably being used for code signing the application (so the user knows who created the program and hence if they can trust it).

包含加密私钥的文件。它可能用于对应用程序进行代码签名(因此用户知道是谁创建了程序,因此他们是否可以信任它)。

You can probably see it being used by right-clicking on the project, getting Properties, then looking at the Signing tab.

您可以通过右键单击项目,获取“属性”,然后查看“签名”选项卡来查看它的使用情况。

#2


3  

.pfx is an extension for a security certificate. they typically are password-protected.

.pfx是安全证书的扩展。它们通常受密码保护。

#1


20  

A file containing an encrypted private key. It's probably being used for code signing the application (so the user knows who created the program and hence if they can trust it).

包含加密私钥的文件。它可能用于对应用程序进行代码签名(因此用户知道是谁创建了程序,因此他们是否可以信任它)。

You can probably see it being used by right-clicking on the project, getting Properties, then looking at the Signing tab.

您可以通过右键单击项目,获取“属性”,然后查看“签名”选项卡来查看它的使用情况。

#2


3  

.pfx is an extension for a security certificate. they typically are password-protected.

.pfx是安全证书的扩展。它们通常受密码保护。