Tôi đang thử sử dụng chứng chỉ tự ký (c #):
X509Certificate2 cert = new X509Certificate2(
Server.MapPath("~/App_Data/myhost.pfx"), "pass");
trên máy chủ lưu trữ web được chia sẻ và tôi gặp lỗi:
System.Security.Cryptography.CryptographicException: An internal error occurred.
dấu vết ngăn xếp kết thúc bằng
System.Security.Cryptography.CryptographicException.
ThrowCryptogaphicException(Int32 hr) +33
System.Security.Cryptography.X509Certificates.X509Utils.
_LoadCertFromFile(String fileName, IntPtr password, UInt32 dwFlags,
Boolean persistKeySet, SafeCertContextHandle& pCertCtx) +0
System.Security.Cryptography.X509Certificates.X509Certificate.
LoadCertificateFromFile(String fileName, Object password,
X509KeyStorageFlags keyStorageFlags) +237
System.Security.Cryptography.X509Certificates.X509Certificate2..ctor(
String fileName, String password) +131
Trên máy dev của tôi, nó tải ok. Lý do tôi tải * .pfx không phải tệp * .cer vì tôi cần quyền truy cập khóa cá nhân (tệp cer tải Ok). Tôi đã tạo pfx trên dev mochine của mình như vậy:
makecert -r -n "CN=myhost.com, E=admin@myhost.com" -sky exchange -b 01/01/2009
-pe -sv myhost.pvk myhost.cer
<b>pvk2pfx</b> -pvk myhost.pvk -spc myhost.cer -pfx myhost.pfx -po pass</code>
Tôi đang sử dụng phiên bản v5.131.3790.0 của makecert