从 pfx 证书中提取文件 .cer 和文件 .key
Extract file .cer and file .key from a pfx certificate
我使用此代码从 .pfx 证书开始创建 .key 文件,一切正常。
////////////////////////////////////////////Create file .key
string cParK = " pkcs12 -in certificate.pfx -out certificate.key -nocerts -nodes -nomacver -password pass:" + cPass;
System.Diagnostics.ProcessStartInfo startInfo2 = new System.Diagnostics.ProcessStartInfo("openssl.exe", cParK);
startInfo2.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
startInfo2.CreateNoWindow = true;
System.Diagnostics.Process oProcess2 = System.Diagnostics.Process.Start(startInfo2);
oProcess2.StartInfo.CreateNoWindow = true;
oProcess2.WaitForExit();
有没有什么方法可以不使用 openssl 而只使用 c# 来创建相同的文件?
目前我已经找到了提取 .cer 文件的方法:
System.Security.Cryptography.X509Certificates.X509Certificate2 oCert =
new System.Security.Cryptography.X509Certificates.X509Certificate2("certificate.pfx", "123456");
Byte[] aCert = oCert.Export(System.Security.Cryptography.X509Certificates.X509ContentType.Cert);
File.WriteAllBytes("certificato.cer", aCert);
(我把原题这部分删掉了)
关于第一个问题,我也找到了导出密钥的解决方案,也许对那些说不容易的人也有用,其实很容易。只需遵循此 post。
Solution of the problem
我使用此代码从 .pfx 证书开始创建 .key 文件,一切正常。
////////////////////////////////////////////Create file .key
string cParK = " pkcs12 -in certificate.pfx -out certificate.key -nocerts -nodes -nomacver -password pass:" + cPass;
System.Diagnostics.ProcessStartInfo startInfo2 = new System.Diagnostics.ProcessStartInfo("openssl.exe", cParK);
startInfo2.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
startInfo2.CreateNoWindow = true;
System.Diagnostics.Process oProcess2 = System.Diagnostics.Process.Start(startInfo2);
oProcess2.StartInfo.CreateNoWindow = true;
oProcess2.WaitForExit();
有没有什么方法可以不使用 openssl 而只使用 c# 来创建相同的文件?
目前我已经找到了提取 .cer 文件的方法:
System.Security.Cryptography.X509Certificates.X509Certificate2 oCert =
new System.Security.Cryptography.X509Certificates.X509Certificate2("certificate.pfx", "123456");
Byte[] aCert = oCert.Export(System.Security.Cryptography.X509Certificates.X509ContentType.Cert);
File.WriteAllBytes("certificato.cer", aCert);
(我把原题这部分删掉了)
关于第一个问题,我也找到了导出密钥的解决方案,也许对那些说不容易的人也有用,其实很容易。只需遵循此 post。 Solution of the problem