c#中的哈希值计算

时间:2014-04-24 21:05:05

标签: c# .net hash md5

我正在尝试创建一个计算两个日期的哈希值的程序。日期是文件的创建日期和上次更新的日期时间。即使在每种情况下,我都得到相同的hast值。更新和创建的日期是不同的。我的简单目标是计算两个日期的哈希值并进行比较。请帮我处理我的代码。更正代码或建议任何新代码。提前谢谢。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Security.Cryptography;

namespace ConsoleApplication3
{


    class Program
    {
        static void Main()
        {
            string source, source1;

            FileInfo info = new FileInfo("D:\\file.txt");

            DateTime time1 = info.CreationTime;
            Console.WriteLine(time1);

            DateTime time2 = info.LastAccessTime;
            Console.WriteLine(time2);


            DateTime time3 = info.LastWriteTime;
            Console.WriteLine(time3);

            source = Convert.ToString(time1);
            source1 = Convert.ToString(time3);
            using (MD5 md5Hash = MD5.Create())
            {
                string hash = GetMd5Hash(md5Hash, source);
                string hash1 = GetMd5Hash(md5Hash, source1);
                Console.WriteLine("The MD5 hash of" + time1 + "is:" + hash + ".");
                Console.WriteLine("The MD5 hash of" + time3 + "is:" + hash1 + ".");

                if (VerifyMd5Hash(md5Hash, source, hash))
                {
                    Console.WriteLine("The hashes are the same.");
                }
                else
                {
                    Console.WriteLine("The hashes are not same.");
                }
                Console.ReadLine();
            }
        }



        static string GetMd5Hash(MD5 md5Hash, string source1)
        {

            FileInfo info = new FileInfo("D:\\file.txt");
            DateTime time3 = info.LastWriteTime;

            source1 = Convert.ToString(time3);
            // Convert the input string to a byte array and compute the hash. 
            byte[] data = md5Hash.ComputeHash(Encoding.UTF8.GetBytes(source1));

            // Create a new Stringbuilder to collect the bytes 
            // and create a string.
            StringBuilder sBuilder = new StringBuilder();

            // Loop through each byte of the hashed data  
            // and format each one as a hexadecimal string. 
            for (int i = 0; i < data.Length; i++)
            {
                sBuilder.Append(data[i].ToString("x2"));
            }

            // Return the hexadecimal string. 
            return sBuilder.ToString();
        }

        // Verify a hash against a string. 
        static bool VerifyMd5Hash(MD5 md5Hash, string source1, string hash)
        {
            // Hash the input. 
            string hashOfInput = GetMd5Hash(md5Hash, source1);

            // Create a StringComparer an compare the hashes.
            StringComparer comparer = StringComparer.OrdinalIgnoreCase;

            if (0 == comparer.Compare(hashOfInput, hash))
            {
                return true;
            }
            else
            {
                return false;
            }

        }


    }

}

2 个答案:

答案 0 :(得分:0)

你的函数GetMd5Hash有一个文件,它会覆盖传入的内容。只需删除它内部的前三行

static string GetMd5Hash(MD5 md5Hash, string source1)
{
    //FileInfo info = new FileInfo("D:\\file.txt");
    //DateTime time3 = info.LastWriteTime;

    //source1 = Convert.ToString(time3);

答案 1 :(得分:0)

我认为这是GetMd5Hash方法中的一个问题。根据您的输入,您可以使用同一文件中的info.LastWriteTime计算哈希值。

一种好的方法是始终在程序中使用来自外部调用的输入,以避免这种错误。