You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
xmlsignature
About this tag
The xmlsignature tag covers discussions about validating XML digital signatures using Microsoft's CryptXML APIs in native C++. A common challenge is extracting key information from signed XML and converting an RSA public key from an XML string into a BCRYPT_KEY_HANDLE for use with CryptXmlVerifySignature. While C# offers a simpler approach with SignedXml, C++ developers often need to manually load and convert the public key. Topics include troubleshooting signature validation, handling key info retrieval, and comparing native C++ methods with managed C# solutions.
Hi Guys,
I got a really tricky problem from my work. I am doing a xml signature validation with CryptXml in native C++.
I got this signed xml,, I can't retrieve the key info from it using cryptxml API.
there's a solution using signedXml with C#, it validates the file with a rsakey...