1

人間が判読できるが、変更されていないことを確認できる XML ファイルを作成しようとしています。

私が取っているアプローチは次のとおりです。

  • xml メッセージ本文を生成する (正規化を適用 (C14N))
  • メッセージ本文のハッシュ値を生成します (SHA-256)
  • ハッシュ値を暗号化する (AES-256)
  • 暗号化されたハッシュを使用してメッセージ ヘッダーを生成する

このタスクのすべての段階で問題が発生していますが、現在の問題は XML 本体からハッシュ値を生成することです。

「ReadContentAsBase64 メソッドは、この XmlReader ではサポートされていません。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;
}
4

2 に答える 2

2

これが私がソリューションを実装した方法です。

/// <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
    {
        using( MemoryStream ms = new MemoryStream() )
        {
            XmlWriterSettings xws = new XmlWriterSettings();
            xws.OmitXmlDeclaration = true;
            xws.Indent = false;

            using( XmlWriter xw = XmlWriter.Create( ms, xws ))
            {
                // Assign the xml to be written to the writer and then memory stream
                MessageBody.WriteTo(xw);

                SHA256 shaM = new SHA256Managed();
                hash = Convert.ToBase64String(shaM.ComputeHash( ms ));
            }
        }
    }
    catch (Exception ex)
    {
        Log.WriteLine(Category.Warning, "Exception detected generating the XML hash", ex);
    }

    return hash;
}
于 2011-09-19T07:59:07.593 に答える
1

車輪を再発明しようとしていませんか?

そのSystem.Security.Cryptography.Xml.SignedXmlような目的のために設計されたクラスがあります。

于 2011-09-16T13:16:10.413 に答える