I have a question regarding checking executable files compiled with visual studio using a checksum: If I create a project from src, I get an executable file, name it exec1.exe, which has some metadata. If I rebuild the exact same src later, I get another executable, say exec2.exe, it also has its own metadata section.
If I create a checksum for each of the two files, they are different because the metadata information between the two files is different. Does anyone know a way to bypass metadata when I do a checksum of files, so that regardless of the metadata, executing a checksum of two files will result in the same checksum value? Or how to compile binaries, so that while src is identical, I get the same executables?
Thanks in advance for input, Relations
source share