Questions tagged [c14n]

Canonical XML [XML-C14N] specifies a standard serialization of XML.

Canonical XML when applied to a subdocument must include the subdocument's ancestor context including all of the namespace declarations and attributes in the xml: namespace https://www.w3.org/TR/xml-exc-c14n/

17 questions
0
votes
1 answer

Error Type 'XmlDsigC14NTransform' is not defined

My code starts with: Imports System.Security.Cryptography Imports System.Text Imports System.Xml Imports System.IO But when I try to normalise my XML document using C14N: Dim c14n = New XmlDsigC14NTransform I get an error: Code BC30002 Type…
DovesandChicks
  • 378
  • 2
  • 17
0
votes
1 answer

MSXML and cannonical XML

Is there a good way to canonicalize XML with MSXML6? I have an XML document that I load into a IXMLDOMDocument object. I need to perform an operation like singing or hashing on the document. I would like to put it into XML canonical form a la…
sam msft
  • 537
  • 6
  • 17
1
2