Problem
Today I stumbled upon a problem instantiating a X509Certificate2 class from a PKCS#12 container (a .pfx or a .p12 file) in production environment. For some reason I kept getting “The specified network password is not correct.” (for password-less containers) or “An internal error occurred.” (for protected ones).
Cause
The cause of the problem doesn’t seem to have much to do with the error messages. For some reason the constructor is trying to get access to the private key store although the private key is in stored in the file being opened. By default the user key store is used but ASP.NET (and probably non-interactive Windows services in general) are not allowed to open it. Chances are the user key store for the selected account doesn’t even exist.
Solution
One thing you could try is creating a user key store by logging into the account and importing a certificate in its Personal store (and then remove it again).
Another solution is to pass an additional parameter to the constructor – a flag indicating the private keys are (supposed to be) stored in the local computer – X509KeyStorageFlags.MachineKeySet, like this:
var certificate = new X509Certificate2(fileName, password, X509KeyStorageFlags.MachineKeySet);
thanks a lot, it work well now
Thanks, I found this post very useful.
Thanks!! :)
thanks it helped :)
it is very helpful, thanks!
[…] Reference: http://vdachev.net/2012/03/07/c-sharp-error-creating-x509certificate2-from-a-pfx-or-p12-file-in-prod… […]
Thank you so much
Thank you. This article solved my problem.
Hi, can someone explain me what to do exactly to get this issue resolved. I have a pfx certificate imported in my personal store. I have been trying to solve this since a week and this is my first task at work (apparently which is my first job).
Appreciate any kind of help.