创建证书时未处理加密异常

本文关键字:加密 异常 未处理 证书 创建 | 更新日期: 2023-09-27 17:57:59

我正在创建这个简单的控制台应用程序,它将创建我自己的证书。这是我的密码。

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.

创建证书时未处理加密异常

在使用证书之前,您需要等待makecert进程退出。

 Process
    .Start(startInfo)
    .WaitForExit();

我使用批处理(.bat)文件解决了这种情况,因为我发现它更容易。让c在程序启动时运行批处理文件。谢谢你的帮助。:)