Hello stackoverflow World,
I'm investigating using the miniconda package manager for the first time.
I downloaded the files from here: https://docs.conda.io/en/latest/miniconda.html
I'm on a windows machine so downloaded the following file:
As I am hoping is obvious from my title, the check sum that my machine produces using the Windows certUtil -hashfile function produces a different check sum.
Now, my main issue is what to do now...!
Do I run screaming to the hills burning all my IT kit as I go, or is there a way to get to the bottom of this?
Thanks in advance
hash
is not a universally defined algorithm:So when you use a program to
hash
a file and want to compare it to a published value, you must make sure that you are using the same hash function. In your case, the miniconda download page already clarifies that it is aSHA256
hash, which you need to specify when callingcertutil
.Proof:
Without specifying the hash function (SHA1 is used and - as expected - produces a different hash value):
Specifying the correct function produces the right hash value: