Hi!
Im creating project in c# .net2.0, to sign and verify documens us
xmldsig format.
My problem is how to use prefix "ds" instead of:
xmlns="http://www.w3.org/2000/09/xmldsig#" in SignedInfo,
SignatureValue and KeyInfo node and their child nodes?
I add xmlns:ds="http://www.w3.org/2000/09/xmldsig#" attribute to
xmlDocument. After call ComputeSignature method, I add to signature
xmlElement (XmlElement xmlDigitalSignature = signedXml.GetXml()) frefix
ds (xmlDigitalSignature.Prefix = "ds") - this change
xmlns="http://www.w3.org/2000/09/xmldsig#" of this element (signature)
to ds prefix, but I cant do this for other signedXml (signature) child
nodes and still have valid signatures.
I post this message on cryptography news to, but without any answer ;(
Maybe this is imposible with xmldsig internal engine in c# and .Net2.0?
Any sugestion will be very helpful!
Iguana