Load X509 certificate from disk .Net Core

BlackSpy picture BlackSpy · Dec 11, 2017 · Viewed 15.1k times · Source

I've created an X509 certificate using OpenSSL. I am trying to load it using the Import method on the X509Certificate2 class, in .NET Core 2.0.

var cert = new X509Certificate2();
cert.Import(_path);

But get thrown the following exception:

System.PlatformNotSupportedException : X509Certificate is immutable on this 
platform. Use the equivalent constructor instead.

Which constructor should I be using / what is the correct way to load this certificate from disk?

Answer

Ivan Zaruba picture Ivan Zaruba · Dec 12, 2017

You can use

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