我已使用 OpenSSL 创建了 X509 证书。我正在尝试使用 .NET Core 2.0 中 X509Certificate2 类上的 Import 方法来加载它。
var cert = new X509Certificate2();
cert.Import(_path);
但是抛出以下异常:
System.PlatformNotSupportedException : X509Certificate is immutable on this
platform. Use the equivalent constructor instead.
我应该使用哪个构造函数/从磁盘加载此证书的正确方法是什么?
你可以使用
var x509 = new X509Certificate2(File.ReadAllBytes(_path));
对于那些使用 PowerShell 脚本路径的用户,您可以简单地使用:
var x509 = new X509Certificate2(path);