Checksum generator
Closed this issue · 2 comments
jaroslavmraz commented
Checksum generator doing strang output. I have randomly download few files
use mac shasum -a 256 filename and same in app but this sums dont match. shasum function geting right result but in devtools is a little different result.
TEST FILE: https://github.com/ObuchiYuki/DevToysMac/archive/refs/tags/0.0.7.2.tar.gz
SHASUM - 653029892428b59dfc66745d1400642393a3fd18a03a81b28e01284ba064cbca DevToysMac-0.0.7.2.tar
DevToys - 653029892428b59dfc66745d140642393a3fd18a03a81b28e1284ba064cbca
ObuchiYuki commented
@jaroslavmraz Thank you for your issue! I solved this problem.
This seem link hex convert bug. 0F
had been converted to F
. I added the padding zero to fix this!
ObuchiYuki commented