I have a crl file. "Sample.crl", I need to install that into LocalStore using C# in windows.
var decodedCertificateCollection = new X509Certificate2Collection();
var certBytes = File.ReadAllBytes("sample.crl");
decodedCertificateCollection.Import(certBytes); //throws error
X509Store revokedStore = new X509Store(StoreName.Disallowed, StoreLocation.LocalMachine);
revokedStore.Open(OpenFlags.ReadWrite);
revokedStore.AddRange(decodedCertificateCollection )
The above code throws
"System.Security.Cryptography.CryptographicException: Cannot find the requested object"
Though I find some questions already, those are 10 years old, and I am wondering do we have a way in c# to do this today without the need of Win32 or thirdParty libraries.