I'm trying use self-signed certificate (c#):

X509Certificate2 cert = new X509Certificate2(
    Server.MapPath("~/App_Data/myhost.pfx"), "pass");

on a shared web hosting server and I got an error:

System.Security.Cryptography.CryptographicException: An internal error occurred.

stack trace ends with

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

On my dev machine it loads ok. The reason I load *.pfx not a *.cer file because I need a private key access (cer file loads Ok). I made pfx on my dev mochine like that:

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>

I am using version v5.131.3790.0 of makecert

link|improve this question
feedback

2 Answers

up vote 39 down vote accepted

Use the local computer store for the private key:

X509Certificate2 cert = new X509Certificate2("myhost.pfx", "pass",
    X509KeyStorageFlags.MachineKeySet);

UPDATE:

MachineKeySet is described as "Private keys are stored in the local computer store rather than the current user store". The default with no flags is to place in the user store. So, I'm guessing that even though you are reading the cert from disk and storing it in an object that the _LoadCertFromFile method is still accessing a certificate store. And on the hosting server the ASP.NET process does not have permission to access the user store (or a user store does not even exist).

link|improve this answer
1  
yes it helps, thanks. could you explain why? docs says nothing helpful. – tmp3128 Aug 28 '09 at 7:07
1  
Thanks, this is all that was needed to get a PayPal encrypted button working (EWP), as described in: x.com/thread/40702?start=0&tstart=0. This will certainly help other ppl in the future. – Fredrik Johansson Jun 11 '10 at 9:05
1  
You saved my day. Oddly enough, it worked on my machine before upgrading the solution to .NET 4.0 – Marc Climent Nov 9 '10 at 16:03
Indeed, all needed to do was set the X509KeyStorageFlags.MachineKeySet parameter. It's really sad that the exception thrown simply states "An internal error occurred." Not very helpful. – Nicholi Oct 12 '11 at 21:06
You can also add more privileges on the private key to the account assigned to the app pool. Or change the app pool identity to "Local Service". – UberNeet Dec 19 '11 at 16:53
feedback

Perhaps this article can help:

http://www.codeproject.com/KB/WCF/wcfcertificates.aspx

link|improve this answer
feedback

protected by Bill the Lizard Feb 1 '11 at 13:50

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.