Top "Signedxml" questions

The SignedXml class is the main class used for XML signing and verification (XMLDSIG) in the .NET Framework.

Signing an Xml Document using RSA-SHA256 signature method issue

I am using the method below to sign Xml Documents: public static XmlDocument SignDocument(XmlDocument doc) { string signatureCanonicalizationMethod = "http://www.…

c# signedxml
Problem with custom namespace with SignedXml

The problem occurs when I sign XML documents containing namespace prefixes and namespace references and then validate it. The validation …

c# xml xml-signature signedxml
Signed XML signature verification for SSO SAML (Using sha256)

Using VS 2008 with .Net Framework 3.5 on windows 2003 server. We have implemented SSO with SAML for security. We work at service …

c# .net saml sha256 signedxml
.Net: SignedXml - Signing xml with transform algorithm exc-c14n

I'm trying to sign Xml (actually SOAP xml) in C# using the SignedXml class, the signing stage passes successfully, but …

c# signedxml
SignedXml.CheckSignature fails in .NET 4 but it works in .NET 3.5, 3 or 2

I have a response from a 3-rd party web service. I load an XmlDocument with that response. string txt = readStream.…

c# security certificate signature signedxml