有没有办法在签名XML文档的签名(.Net中的SignedXml类)上设置前缀?
所以而不是:
<Signature xmlns="http://www.w3.org/2000/09/xmldsig#>
...
</Signature>
我可以拥有以下内容:
<ds:Signature xmlns:ds="http://www.w3.org/2000/09/xmldsig#>
...
</ds:Signature>
答案 0 :(得分:8)
无法做到。如果您在签署后修改XML ,则可能无法对其进行验证,这在上面的示例中就是这种情况。 IMO这是MSFT数字签名实现中的一个缺陷,你将不得不忍受。
很多人会说没有理由这样做,而且技术上是正确的。但是,当你与一个巨大的供应商(即州政府或银行)打交道时,祝他们在最后改变它。大多数参考实现包括它。
更新:签名在SignedInfo元素中标记所有内容,因此如果您在事后更新该元素,则签名不再有效。你已经“篡改”了这条消息。
答案 1 :(得分:6)
首先,确实没有任何理由这样做。这两种形式在功能上是等同的。任何表现良好的XML处理器都将完全相同地处理它们。因此,除非您尝试与未正确实现XML命名空间的应用程序进行通信,否则最好(IMO)仅保留默认表单。 (即使在这种情况下,如果可能的话,更好地修复错误的应用程序。)
也就是说,您可以使用XPath手动设置SignedXml.GetXml()及其子元素返回的XmlElement上的前缀,如下所示:
XmlElement signature = signedXml.GetXml();
foreach (XmlNode node in signature.SelectNodes(
"descendant-or-self::*[namespace-uri()='http://www.w3.org/2000/09/xmldsig#']"))
{
node.Prefix = "ds";
}
答案 2 :(得分:1)
可以这样做,但在获取SignedInfo节点的摘要值之前,必须修改SignedXml类以添加前缀。
将修改ComputeSignature方法以添加前缀参数
public void ComputeSignature(string prefix){...}
当调用此方法时,如果在没有&#34; ds&#34;的情况下获得此值,则通过消化SignedInfo节点的值来计算签名值。前缀然后添加前缀,您将获得无效的签名,因此您必须在获取signedinfo节点的摘要值之前添加前缀。
此摘要值在GetC14NDigest方法中生成,因此将修改此方法以添加前缀参数并在获取摘要值之前添加前缀
private byte[] GetC14NDigest(HashAlgorithm hash, string prefix)
{
XmlDocument document = new XmlDocument();
document.PreserveWhitespace = false;
XmlElement e = this.SignedInfo.GetXml(); //get the signedinfo nodes
document.AppendChild(document.ImportNode(e, true));
Transform canonicalizationMethodObject = this.SignedInfo.CanonicalizationMethodObject;
SetPrefix(prefix, document.DocumentElement); /*Set the prefix before getting the HASH*/
canonicalizationMethodObject.LoadInput(document);
return canonicalizationMethodObject.GetDigestedOutput(hash);
}
好的,现在你有了SIGNInfo节点的Signature Value和&#34; ds&#34;前缀,据说你仍然没有前缀的xml,所以如果你只是调用GetXml方法,你将得到没有前缀的xml,当然因为签名值是根据ds前缀计算的将有一个无效的签名。 为了避免这种情况并获得带有前缀的xml结构,您必须修改GetXml方法,添加前缀参数,并调用SetPrefix方法,它将添加&#34; ds&#34; Signature Xml中所有节点的前缀
public XmlElement GetXml(string prefix)
{
XmlElement e = this.GetXml();
SetPrefix(prefix, e); //return the xml structure with the prefix
return e;
}
我将带着这些修改离开这里
CUSTOM CLASS
internal sealed class CustomSignedXml : SignedXml
{
XmlElement obj = null;
public CustomSignedXml (XmlDocument xml)
: base(xml)
{
}
public CustomSignedXml (XmlElement xmlElement)
: base(xmlElement)
{
}
public XmlElement GetXml(string prefix)
{
XmlElement e = this.GetXml();
SetPrefix(prefix, e);
return e;
}
public void ComputeSignature(string prefix)
{
this.BuildDigestedReferences();
AsymmetricAlgorithm signingKey = this.SigningKey;
if (signingKey == null)
{
throw new CryptographicException("Cryptography_Xml_LoadKeyFailed");
}
if (this.SignedInfo.SignatureMethod == null)
{
if (!(signingKey is DSA))
{
if (!(signingKey is RSA))
{
throw new CryptographicException("Cryptography_Xml_CreatedKeyFailed");
}
if (this.SignedInfo.SignatureMethod == null)
{
this.SignedInfo.SignatureMethod = "http://www.w3.org/2000/09/xmldsig#rsa-sha1";
}
}
else
{
this.SignedInfo.SignatureMethod = "http://www.w3.org/2000/09/xmldsig#dsa-sha1";
}
}
SignatureDescription description = CryptoConfig.CreateFromName(this.SignedInfo.SignatureMethod) as SignatureDescription;
if (description == null)
{
throw new CryptographicException("Cryptography_Xml_SignatureDescriptionNotCreated");
}
HashAlgorithm hash = description.CreateDigest();
if (hash == null)
{
throw new CryptographicException("Cryptography_Xml_CreateHashAlgorithmFailed");
}
this.GetC14NDigest(hash, prefix);
this.m_signature.SignatureValue = description.CreateFormatter(signingKey).CreateSignature(hash);
}
private byte[] GetC14NDigest(HashAlgorithm hash, string prefix)
{
XmlDocument document = new XmlDocument();
document.PreserveWhitespace = false;
XmlElement e = this.SignedInfo.GetXml();
document.AppendChild(document.ImportNode(e, true));
Transform canonicalizationMethodObject = this.SignedInfo.CanonicalizationMethodObject;
SetPrefix(prefix, document.DocumentElement); //Set the prefix before getting the HASH
canonicalizationMethodObject.LoadInput(document);
return canonicalizationMethodObject.GetDigestedOutput(hash);
}
private void BuildDigestedReferences()
{
Type t = typeof(SignedXml);
MethodInfo m = t.GetMethod("BuildDigestedReferences", BindingFlags.NonPublic | BindingFlags.Instance);
m.Invoke(this, new object[] { });
}
private void SetPrefix(string prefix, XmlNode node)
{
foreach (XmlNode n in node.ChildNodes)
SetPrefix(prefix, n);
node.Prefix = prefix;
}
}
以及使用它的方式
CustomSignedXml signedXml = new CustomSignedXml();
.
.//your code
.
//compute the signature with the "ds" prefix
signedXml.ComputeSignature("ds");
//get the xml of the signature with the "ds" prefix
XmlElement xmlDigitalSignature = signedXml.GetXml("ds");