I know there are many posts about this, but still I cannot find a solution to make it work. I created a PFX file with openssl on my machine as follows:
openssl x509 -req -days 365 -in "myReqest.csr" -signkey "myPrivateKey.pem" -out "myCertificate.crt"
openssl pkcs12 -export -out "myCertificate.pfx" -inkey "myPrivateKey.pem" -in "myCertificate.crt" -certfile "myCertificate.crt"
In my C # application, I access the private key as follows:
var cert = new X509Certificate2("myCertificate.pfx", "myPassword");
cert.HasPrivateKey; // This is always true!
cert.PrivateKey; // Works on my machine (only)
This works fine (on my machine), but when I run the same code on another computer, it throws: "Keyset not found" , although it HasPrivateKeyreturns true! Should the private key be included in the * .pfx file? Can you tell me:
Was the certificate / private key file somehow automatically installed on my computer using openssl when I created it?
How can I read the private key from a * .PFX file (or, alternatively, from a * .PEM file)?
StackTrace of Exception:
at System.Security.Cryptography.Utils.CreateProvHandle(CspParameters parameters, Boolean randomKeyContaier)
at System.Security.Cryptography.Utils.GetKeyPairHelper(CspAlgorithmType keyType, CspParameters parameters, Boolean randomKeyContaier, Int32 dwKeySize, SafeProvHandle& safeProvHandle, SafeKeyHandle& safeKeyHandle)
at System.Security.Cryptography.RSACryptoServiceProvider.GetKeyPair()
at System.Security.Cryptography.RSACryptoServiceProvider..ctor(Int32 dwKeySize, CspParameters parameters, Boolean useDefaultKeySize)
at System.Security.Cryptography.RSACryptoServiceProvider..ctor(CspParameters parameter)
at System.Security.Cryptography.X509Certificates.X509Certificate2.get_PrivateKey()
Update:
I found out that the following works:
X509Certificate2 cert = new X509Certificate2("filename.pfx", "password", X509KeyStorageFlags.Exportable)
((RSACryptoServiceProvider)cert.PrivateKey).SignData(...
File.WriteAllText("filename.xml", cert.PrivateKey.ToXmlString(true));
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
rsa.FromXmlString(File.ReadAllText("filename.xml"));
rsa.VerifyData(...
However, for me this is just a workaround, I would like to make it a more ordinary / standard way!