1

私は学生で、プログラミングは初めてです。これは、私が書こうとした最初の C# プログラムです。このプログラムは、クリア テキストを含むテキスト ファイルを読み取り、MD5 および SHA-1 ハッシュを含むテキスト ファイルを出力することになっています。私が知る限り、プログラムは機能しますが、私のプログラムによって作成されたハッシュは、オンライン ハッシュ ジェネレーターによって生成されたハッシュと一致しません。私の知る限り、入力単語が同じであればハッシュは一致するはずです。これを引き起こす私のコードに明らかな問題はありますか?

using System;
using System.Text;
using System.IO;
using System.Security.Cryptography;

namespace CreateHash
{
class Program
{
    const string INPUTFILE = "C:\\ClearTextPasswords.txt";
    const string OUTPUTFILEMD5 = "C:\\EncryptedMD5Passwords.txt";
    const string OUTPUTFILESHA1 = "C:\\EncryptedSHA1Passwords.txt";

    static void Main(string[] args)
    {
        string input;
        int counter = 0;

        DeleteWriteFile();

        StreamReader readFile = new StreamReader(INPUTFILE);

        while ((input = readFile.ReadLine()) != null)
        {
            if(AppendFile(input))
                counter++;
        }

        readFile.Close();

        Console.WriteLine("\nSuccessfully wrote {0} encrypted password(s) to: \n{1} and\n{2} files.\n\nPress any key to exit...", counter.ToString(), OUTPUTFILEMD5, OUTPUTFILESHA1);
        Console.ReadKey();
    }

    static void DeleteWriteFile()
    {
        //Example of try/catch block
        try
        {
            System.IO.File.Delete(OUTPUTFILEMD5);
        }
        catch (Exception ex)
        {
            Console.WriteLine("There was an error deleting the MD5 Output file: " + ex.Message);
        }

        try
        {
            System.IO.File.Delete(OUTPUTFILESHA1);
        }
        catch (Exception ex)
        {
            Console.WriteLine("There was an error deleting the MD5 Output file: " + ex.Message);
        }
    }

    static bool AppendFile(string str)
    {
        int x = 0;
        int y = 0;
        bool result = false;

        StreamWriter writeFile1;
        StreamWriter writeFile2;

        HashToolkit hashToolkit = new HashToolkit();

        //Example of try/catch/finally block
        try
        {
            writeFile1 = new StreamWriter(OUTPUTFILEMD5, true);
            writeFile1.WriteLine(hashToolkit.GetMd5(str));
            writeFile1.Close();
            x = 1;
        }
        catch (Exception ex)
        {
            Console.WriteLine("There was an error writing to the MD5 Output file: " + ex.Message);
        }
        finally
        {
            writeFile1 = null;
        }

        try
        {
            writeFile2 = new StreamWriter(OUTPUTFILESHA1, true);
            writeFile2.WriteLine(hashToolkit.GetSha1(str));
            writeFile2.Close();
            y = 1;
        }
        catch (Exception ex)
        {
            Console.WriteLine("There was an error writing to the SHA1 Output file: " + ex.Message);
        }
        finally
        {
            writeFile2 = null;
        }

        if (x * y != 0)
            result = true;

        return result;
    }
}

public class HashToolkit
{
    public HashToolkit()
    {
    }

    public string GetMd5(string str)
    {
        MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider();
        string input = string.Empty;

        byte[] hashedData = md5.ComputeHash(Encoding.Unicode.GetBytes(str));

        foreach (byte b in hashedData)
        {
            input += String.Format("{0,2:X2}", b);
        }
        return input;
    }

    public string GetSha1(string str)
    {
        SHA1 sha = new SHA1CryptoServiceProvider();
        string input = string.Empty;

        byte[] hashedData = sha.ComputeHash(Encoding.Unicode.GetBytes(str));

        foreach (byte b in hashedData)
        {
            input += String.Format("{0,2:X2}", b);
        }
        return input;
    }
}
}

どんな助けでも大歓迎です。お時間をいただきありがとうございます。

4

1 に答える 1

3

これは、文字列をハッシュすることはできず、バイトのみをハッシュできるためです。そのため、最初にバイトに変換する必要があります。そして、そのためにUTF16を使用しています。オンライン ツールでは、おそらく UTF8 または ASCII スタイルのエンコーディングが使用されています。それが使用するものを見つけて、それも使用してください。

于 2012-10-28T19:41:49.860 に答える