Checksum Verifier & Generator Utility

carnageX

Private Joker,
Staff member
Messages
25,056
Location
Oregon
Checksum Verifier and Utility
Download from the GitHub link at the bottom of the post

====================================================================
Copyright
====================================================================
Checksum Verifier Utility
Copyright 2013 Chase (carnageX) <carnagex@outlook.com>
This work is free. You can redistribute it and/or modify it under the
terms of the Do What The **** You Want To Public License, Version 2,
as published by Sam Hocevar. See http://www.wtfpl.net/ for more details.

====================================================================
Warranty
====================================================================
/* This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The **** You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://www.wtfpl.net/ for more details. */

====================================================================
Details & Usage
====================================================================
Built on .NET Framework 4.5

Supported Checksum Algorithms:
MD5, MD5-CNG
SHA-1, SHA-1 Managed, SHA-1 CNG
SHA-256, SHA-256 Managed, SHA-256 CNG
SHA-384, SHA-384 Managed, SHA-384 CNG
SHA-512, SHA-512 Managed, SHA-512 CNG
RIPEMD160, RIPEMD160 Managed
CRC16
CRC32

Supports 3 modes:
Single File
Multiple File
Text string

You can generate hashes for either mode, or compare to a checksum provided to the program by the user.

To use (single or Multiple File modes):
1) Select desired algorithm(s) (default is MD5 - assumed this would be most used)
2) Select a tab (mode) to use
3) (Optional) If verifying a file's checksum, enter it in the "Checksum" field.
4) Browse for a file to generate
5) Click the Compare button
Note: for large files it may take some time... be patient!
6) The result will appear in the appropriate section in the tab's section.
a) For Single File mode: the checksum generated for the file will appear in the "File Checksum" field. If comparing to an entered Checksum, the result will display below the File Checksum field, noting if it is a match or mismatch. The checksum generated from the file will also turn green for a match, and red for a mismatch.

b) For Multiple Files mode: The generated checksum(s) will appear in the list to the right of the Browse and Compare buttons for each file. It will also note if there was a match or mismatch to the given Checksum (if one was given).

To use Text String Mode:
1) Select desired algorithm(s)
2) Input a text string in the "Input String" box
a) Input a checksum to compare against if desired
3) Select an encoding method
4) Click Generate/Compare button

====================================================================
License Content
====================================================================
DO WHAT THE **** YOU WANT TO PUBLIC LICENSE
Version 2, December 2004

Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>

Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.

DO WHAT THE **** YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

0. You just DO WHAT THE **** YOU WANT TO.

====================================================================
Changelog
====================================================================

Version 4.3.1
Replaced statusbar status label with status light to indicate state (Ready/Running/Finished/Error)

Version 4.3.0
Added Statusbar added to bottom of window
Various details such as current operation status (Ready, Running, Finished, and Error), elapsed operation time, and the progress bar from each tab has been removed and added to statusbar

Version 4.2.1
Added Comparison capability for Text tab
Switched order of File / Checksum inputs on Single File tab
Added thousands-separator for file size

Version 4.2.0
Added Text (Single string) Hash Generation tab with the following text encoding options:
ASCII, BigEndianUnicode, Default (current system's default), Unicode, UTF7, UTF8, UTF32

Version 4.1.0
Added additional hash algorithms:
MD5-CNG, SHA1 Managed/CNG, SHA256 Managed/CNG, SHA384 Managed/CNG, SHA512 Managed/CNG, and RIPEMD160 Managed

Version 4.0.0
Initial release of WPF conversion from WinForms

Below are Depcrecated WinForms version changelogs:
Version 3.1.0
* Added RIPEMD160 hash computation

Version 3.0.0
* Added ability to select multiple algorithms at once
* Press "Delete" key to deselect all items, and "Shift+Delete" to select all items
* Fixed small bug with Single File context menu not coming up.
* Added which algorithm matches/mismatches along with generated checksum.

Version 2.6.0
* Allow form to be resizable / maximized
* Changed display format of Multifile results
* Allow export of Multifile results to a text file

Version 2.5.3
* Added CRC16 hash computation

Version 2.5.2
* Set project target to AnyCPU instead of x86 only
* Setup TF and MF tabs to change the Compare button text depending on user-inputted hash textbox state

Version 2.5.1
* Code fixes and refactoring
* Additional source documentation added

Version 2.5.0
* Fixed file handling to dispose of file handle when finished computing the hash
* Added CRC32 hash computation

Version 1.0.0
* Initial Release

-------------------------------------------------

GitHub link:
https://github.com/carnageX/ChecksumVerifierWPF

Latest release download:
https://github.com/carnageX/ChecksumVerifierWPF/releases/tag/v4.3.1
 
Last edited:
lol @ the license.
Do you think we could possibly get a link to the source code? ;)
 
lol @ the license.
Do you think we could possibly get a link to the source code? ;)

I like that license ever since I found it a few years ago haha.

Could upload the source if you wanted - nothing too special though haha.

Edit: Added source code attachment in first post.
 
Last edited:
Updated standalone and source to v2.5.0


Version 2.5.0
* Fixed file handling to dispose of file handle when finished computing the hash
* Added CRC32 hash computation
 
Last edited:
Didn't feel like messing with any of the other available licenses. Lol

Sent from my Nexus 7 using Tapatalk
 
Maaaaajor overhaul on the application. Pretty much rewrote the entire application on top of .NET 4.5.

Updated to v4.3.0. v4.0.0 is where I did the initial WPF conversion. From there I added some multithreading capability (BackgroundWorker to separate the UI from processing), tweaked the UI (re-ordered some things and added a statusbar), added a Text String hash generator/comparison, and some other smaller things.

The GitHub releases page shows screenshots: https://github.com/carnageX/ChecksumVerifierWPF/releases
 
Another minor update.

Version 4.3.1
Replaced statusbar status label with status light to indicate state (Ready/Running/Finished/Error)
 
Back
Top Bottom