从磁盘.Net Core加载X509证书

问题描述 投票:0回答:2

我已使用 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.

我应该使用哪个构造函数/从磁盘加载此证书的正确方法是什么?

c# ssl https .net-core x509certificate
2个回答
50
投票

你可以使用

var x509 = new X509Certificate2(File.ReadAllBytes(_path));

0
投票

对于那些使用 PowerShell 脚本路径的用户,您可以简单地使用:

var x509 = new X509Certificate2(path);
© www.soinside.com 2019 - 2024. All rights reserved.