Ho visto altri post qui riguardo a questo problema e nessuno di loro sembra affrontare la mia situazione.SignedXml checksign restituisce false
Ho cercato di verificare un'asserzione SAML per la scorsa settimana e ho 2 client che mi hanno inviato SAML ma non riesco a verificarlo.
Il processo principale è che otteniamo un'asserzione codificata Base64 e la decodifico. Caricalo in un XmlDocment con PreserveWhitespace = true.
La verifica metodo è
public static bool Verify(X509Certificate2 cert, XmlElement xmlElement, SignedXml signedXml)
{
bool flag;
try
{
KeyInfo keyInfo = new KeyInfo();
var clause = new KeyInfoX509Data(cert);
keyInfo.AddClause(clause);
XmlElement signatureElement = GetSignatureElement(xmlElement);
if (signatureElement == null)
{
string message = "The XML does not contain a signature.";
throw new SAMLSignatureException(message);
}
signedXml.LoadXml(signatureElement);
if (keyInfo != null)
{
signedXml.KeyInfo = keyInfo;
}
SetSigningKeyFromKeyInfo(signedXml);
flag = signedXml.CheckSignature(cert.PublicKey.Key);
}
catch (Exception exception)
{
throw new SAMLSignatureException("Failed to verify the XML signature.", exception);
}
return flag;
}
private static void SetSigningKeyFromKeyInfo(SignedXml signedXml)
{
IEnumerator enumerator = signedXml.KeyInfo.GetEnumerator();
while (enumerator.MoveNext())
{
if (enumerator.Current is KeyInfoX509Data)
{
var current = (KeyInfoX509Data) enumerator.Current;
if (current.Certificates.Count != 0)
{
var certificate = (X509Certificate) current.Certificates[0];
var certificate2 = new X509Certificate2(certificate);
AsymmetricAlgorithm key = certificate2.PublicKey.Key;
signedXml.SigningKey = key;
return;
}
}
else
{
if (enumerator.Current is RSAKeyValue)
{
var value2 = (RSAKeyValue) enumerator.Current;
signedXml.SigningKey = value2.Key;
return;
}
if (enumerator.Current is DSAKeyValue)
{
var value3 = (DSAKeyValue) enumerator.Current;
signedXml.SigningKey = value3.Key;
return;
}
}
}
throw new SAMLSignatureException("No signing key could be found in the key info.");
}
aver il certificato dal client che ho letto dalla Web.Config (suo memorizzato come stringa base64 codificato) xmlelement rappresenta l'elemento firmato, SignedXml è un oggetto che SignedXml è stato creato con nuovo SignedXml (xmlElement)
Entrambi i client ottengono false restituite tramite assegno di controllo ma quando creerò il mio saml firmato con il mio certificato restituirà true.
Cosa mi manca qui?
EDIT: Sì entrambi i clienti sono su Java e ho postato il metodo SetSigningKeyFromKeyInfo
Lasciami indovinare, l'asserzione che ricevi è stata generata in un linguaggio non -.net, come Java? –
Cosa significa 'SetSigningKeyFromKeyInfo (signedXml);' do? –
Quando si assegna a base64 l'asserzione, si può scaricare l'xml in un file e confrontarlo con una delle proprie asserzioni per verificare le incoerenze strutturali (sottili)? –