我正在创建这个简单的控制台应用程序,它将创建我自己的证书。这是我的代码。
var fi = new FileInfo("certificate.cer");
if (!fi.Exists)
{
var startInfo = new ProcessStartInfo();
startInfo.FileName = "makecert.exe";
startInfo.Arguments = "-sv SignRoot.pvk -cy authority -r sha1 -n \"CN=Certificate\" -ss my -sr localmachine certificate.cer";
Process.Start(startInfo);
}
X509Certificate.CreateFromCertFile("certificate.cer");
但是为什么我在最后一行代码中得到了这个?
CryptographicException was unhandled.
Message=The system cannot find the file specified.