我正在尝试创建一个人类可读但可以验证为未修改的 XML 文件。
我采取的方法如下:
- 生成 xml 消息体(应用规范化 (C14N))
- 生成消息正文的哈希值 (SHA-256)
- 加密哈希值 (AES-256)
- 使用加密哈希生成消息头
我在此任务的每个阶段都遇到了问题,但当前的问题是从 XML 正文生成哈希值。
我收到一个异常“此 XmlReader 不支持 ReadContentAsBase64 方法。使用 CanReadBinaryContent 属性来确定阅读器是否实现了它。” 但我不知道如何实现 XElement 的读取。
xml的一个例子如下
<?xml version="1.0" encoding="UTF-8"?>
<Application>
<MessageHeader>
<MessageID>00000001</MessageID>
<MessageCheck>
dHPHxMJGgDCHtFttgPROo24yi+R1RGx6Ahno2r0nV7zrcgR2+BX4f+RmNCVCsT5g
</MessageCheck>
</MessageHeader>
<MessageBody>
<Receipt>
<Status>OK</Status>
<FormReference>E00000000001</FormReference>
</Receipt>
</MessageBody>
</Application>
这是我一直试图让工作无济于事的代码:
/// <summary>
/// Convert the message body into a Hash value
/// </summary>
/// <param name="MessageBody">XElement holding all the message body XML nodes</param>
/// <returns>a base 64 string representing the hash code</returns>
private string GenerateMessageBodyHash(XElement MessageBody)
{
string hash = string.Empty;
try
{
// Convert the XElement into a stream of data
using (XmlReader xr = MessageBody.CreateReader())
{
// Now that we have a reader, lets read the data into a byte array
List<byte> dataList = new List<byte>();
byte[] buffer = new byte[1000];
int fileIndex = 0;
int bytesRead = 0;
while ((bytesRead = xr.ReadContentAsBase64(buffer, fileIndex, buffer.Length)) != 0 )
{
// Update the position into the file
fileIndex += bytesRead;
//add the data into the list
dataList.AddRange(buffer);
// reset the buffer
buffer = new byte[1000];
}
SHA256 shaM = new SHA256Managed();
hash = Convert.ToBase64String( shaM.ComputeHash( dataList.ToArray() ) );
}
}
catch (Exception ex)
{
// TODO: Add some logging in here
}
return hash;
}