我正在尝试了解 SSL 通信的奥秘,并在此站点上找到了一个很棒的教程。我试图测试我自己的证书。使用 Visual Studio 2012,我只是添加了一个现有文件(我的 .pfx 格式的证书),然后更改了 app.config 中的“证书”和“密码”设置。但是,在尝试运行它时,出现错误:
CryptographicException 未处理:系统找不到指定的文件
然后,我在我的 Web 服务中尝试了同样的方法。在那里,我得到了有关该错误的更多详细信息:
System.Security.Cryptography.CryptographicException: System cannot find specified file.
at System.Security.Cryptography.CryptographicException.ThrowCryptogaphicException(Int32 hr)
at System.Security.Cryptography.X509Certificates.X509Utils._QueryCertFileType(String fileName)
at System.Security.Cryptography.X509Certificates.X509Certificate.LoadCertificateFromFile(String fileName, Object password, X509KeyStorageFlags keyStorageFlags)
v System.Security.Cryptography.X509Certificates.X509Certificate2..ctor(String fileName, String password)
v TestServer.DataService.LoadSoap() v c:\Users\Administrator\Documents\Visual Studio 2012\Projects\TestServer\TestServer\DataService.asmx.cs:line 48
我已经把这个问题写给了文章的作者,但是由于他上次回复是在2012年3月,我不确定他是否会回复。如果有人可以帮助我解决这个问题,我将不胜感激。
PS:将证书从.cer导出到.pfx时,我更改了导出文件的标题。尽管我怀疑它对问题的影响,但我宁愿提一下。