C#和PHP中的不同MD5文件哈希

时间:2013-03-29 14:51:43

标签: c# php encoding md5 checksum

我在检查C#和PHP中的文件的MD5校验和方面遇到了一个小问题。 PHP脚本计算的哈希值与C#计算的哈希值不同。

libcurl.dll C#   = c3506360ce8f42f10dc844e3ff6ed999
libcurl.dll PHP  = f02b47e41e9fa77909031bdef07532af

在PHP中我使用md5_file函数,我的C#代码是:

protected string GetFileMD5(string fileName)
{
    FileStream file = new FileStream(fileName, FileMode.Open);
    MD5 md5 = new MD5CryptoServiceProvider();
    byte[] retVal = md5.ComputeHash(file);
    file.Close();

    StringBuilder sb = new StringBuilder();
    for (int i = 0; i < retVal.Length; i++)
    {
        sb.Append(retVal[i].ToString("x2"));
    }
    return sb.ToString();
}

任何想法如何计算相同的哈希?我认为这可能与编码有关。

提前致谢!

2 个答案:

答案 0 :(得分:1)

我的C#生锈了,但会:

byte[] retVal = md5.ComputeHash(file);

实际读入整个文件?我认为它只是哈希流对象。我相信你需要读取流,然后散列整个文件内容?

  int length = (int)file.Length;  // get file length
  buffer = new byte[length];      // create buffer
  int count;                      // actual number of bytes read
  int sum = 0;                    // total number of bytes read

  // read until Read method returns 0 (end of the stream has been reached)
  while ((count = file.Read(buffer, sum, length - sum)) > 0)
      sum += count;  // sum is a buffer offset for next reading
  byte[] retVal = md5.ComputeHash(buffer);

我不确定这实际上是否按原样运行,但我认为需要这些内容。

答案 1 :(得分:0)

我用这个:

我对php md5与c#md5

的比较还没有任何问题
System.Text.UTF8Encoding text = new System.Text.UTF8Encoding();
System.Security.Cryptography.MD5CryptoServiceProvider md5 = new System.Security.Cryptography.MD5CryptoServiceProvider();                
Convert2.ToBase16(md5.ComputeHash(text.GetBytes(encPassString + sess)));


class Convert2
{
   public static string ToBase16(byte[] input)
   {
      return string.Concat((from x in input select x.ToString("x2")).ToArray());
   }
}