Click here to Skip to main content
15,880,543 members
Articles / Programming Languages / C#
Tip/Trick

A Simple Hash Tool

Rate me:
Please Sign up or sign in to vote.
3.33/5 (3 votes)
16 Jan 2013CPOL 11.3K   714   7   2
A tool to generate MD5 and SHA-1 checksums.

Sample Image

Introduction

This is my second article on CodeProject. Here I am demonstrating a tool to generate MD5 and SHA-1 checksums.

Using the code

You can use an executable directly. To edit code, you can import it in Visual Studio.

Points of Interest

To compute the hash of large files, the ComputeHash function cannot be directly used since the application will go unresponsive for large files.

To prevent this from happening, a hash is generated in another thread using a BackgroundWorker.

C#
// When user clicks to generate MD5 of a file

private void button5_Click(object sender, EventArgs e) {
	...
    getFileMD5.DoWork += new DoWorkEventHandler(MD5_DoWork);
    getFileMD5.RunWorkerCompleted += new RunWorkerCompletedEventHandler(MD5_Completed);
    getFileMD5.RunWorkerAsync();
	...
}

// Function to generate MD5 of a file

public void MD5_DoWork(object sender, DoWorkEventArgs e) {
    ...
    while((readCount = stream.Read(buffer, 0, bufferSize)) > 0) {
        algorithm.TransformBlock(buffer, 0, readCount, buffer, 0);
        progressBar1.Invoke((MethodInvoker)delegate() {    			
            if(progressBar1.Value < progressBar1.Maximum)
                progressBar1.Value += 1;
            else
                progressBar1.Value = 0;
        });
    }
    ...
}


// To be called when job is done, Clear progress-bar and copy result to clipboard
public void MD5_Completed(object sender, RunWorkerCompletedEventArgs e){
    ...
    stream.Close();
    textBox5.Text = ((string)e.Result).ToLowerInvariant();
    System.Windows.Forms.Clipboard.SetText(textBox5.Text);
	...
}

About this project

This tool I have written for my personal use and wanted to share with others. If it proves to be of any help, please let me know.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Student
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 1 Pin
Ali Taghvajou21-Jan-13 23:45
professionalAli Taghvajou21-Jan-13 23:45 
Poor Article
GeneralMy vote of 5 Pin
shajimon21-Jan-13 16:33
shajimon21-Jan-13 16:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.