I am using multiple Identity Providers in my application. The SAML Login and Assertion is working absolutely fine. My question is regarding signing the SAML messages using the certificates.
I am storing the certificate for each Idp in the database and want to load it at the runtime. In the Demo application, the certificate is saved on the physical path and loaded using,
CertificateUtil.LoadThis method has 5 overloads but it asks for the path where the certificate is stored. Can I use the method,
CertificateUtil.LoadBytesto load the certificate from the string? Because I can't see any example for that?
The certificate needs to be installed on the system?