下面的代码曾经可以工作。我认为它是在某些.NET Framework或Windows 10升级后破裂的,但不确定。
它将打开一个临时证书存储区,以生成自签名证书。
using System;
using System.Runtime.InteropServices;
namespace MyTestApp
{
internal static class Program
{
public static void Main(string[] arguments)
{
var certStore = CertOpenStore(
"Memory", // sz_CERT_STORE_PROV_MEMORY
0,
IntPtr.Zero,
CERT_STORE_CREATE_NEW_FLAG,
IntPtr.Zero
);
if (certStore != IntPtr.Zero)
{
Console.WriteLine("Success!");
}
else
{
var error = Marshal.GetHRForLastWin32Error();
Console.WriteLine("Error: " + error.ToString("X"));
}
Console.ReadLine();
}
private const uint CERT_STORE_CREATE_NEW_FLAG = 0x00002000;
[DllImport("Crypt32.dll", SetLastError = true, CharSet=CharSet.Auto, ExactSpelling = true)]
public static extern IntPtr CertOpenStore(
[MarshalAs(UnmanagedType.LPWStr)] string storeProvider,
uint messageAndCertificateEncodingType,
IntPtr cryptProvHandle,
uint flags,
IntPtr parameters
);
}
}
输出为:
Error: 80070002
哪个是ERROR_FILE_NOT_FOUND
。在.NET 4.5
和4.5.2
上进行了测试。
我该怎么做才能进一步诊断或解决?