You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
comment the following two lines inside XmlSignatureUtils.cs if the signature is already verified.
//var result = signedXml.CheckSignature(alg); //Edited
//return result;
/// Verifies the signature of the XmlElement instance using the key given as a parameter.
/// true if the element's signature can be verified. false if the signature could
/// not be verified.
/// if the XmlDocument instance does not contain a signed XML element.
public static bool CheckSignature(XmlElement el, AsymmetricAlgorithm alg)
{
var signedXml = RetrieveSignature(el);
//var result = signedXml.CheckSignature(alg); //Edited
//return result;
return true;
}
Hi!
First of all, thank you to made this amazing project to handle saml authentication!
Second, i have this exception:
The xml saml response sent by azure looks ok, but somehow fail in this point i can´t figute out why.
Can you help me please ?
The text was updated successfully, but these errors were encountered: