I have the following situation:
I receive a certificate from an CA and I also have the CA's public key, which I wanna use to verify the certificates validity.
Right now we use the third-party library SecureBlackBox, but we want to get rid of commercial dependencies in our project. With SBB it works like this:
cert.ValidateWithCA(CACertificate);
Is there a way to do this with the provided X509Certificate2 .NET classes? I found the method Verify() which takes no arguments, but I'm not really sure what it does...
Thank you