Skip to content

AlEscher/FileHasher

Repository files navigation

FileHasher

Create and compare hashes of files and / or text.
Generate the hashes of the files you want (e.g. .exe and .dll) and compare this hash to the one generated at runtime.
By doing so you can detect updates for any game / software without relying on strings or version numbers inside the file. This approach also never touches the file in memory, it only reads it from the disk.
For the download and information on how to use the GUI or the CLI tool please see Releases

MSBuild CodeQL

Speed:

In order to know what to expect in terms of performance, I did some tests for SHA256 with a blocksize of 16777216 (2^24) Bytes. SHA512 will be significantly faster, since we only have to do half of the iterations that SHA256 does. There is no real reason to use a larger blocksize, however other sizes may perform better on different hardware.
These measurements were done with the release version of the Console file, the GUI will be slower (more threads, synchronization, etc...)

FileSize (KB) Runtime (ms)
14847574 54654
5186093 19142
3770744 13941
1039630 3833
431357 1615
103972 389
1245 5.1
115 0.7

GUI:

GUI_Preview

Sources:

The only sources used are:

External

I am using Qt for the GUI and QtFramelessWindowDarkStyle for the dark mode.
Download the Qt Installer and install version 15.5.0, add the project files in FileHasherUI and you should be good to go
(you will need to keep the whole project's folder structure, or make appropiate changes to the .pro file).