I think the avakar point is trying to do: with modern processing power, the I / O speed of your hard disk is a bottleneck, not a hash calculation. Getting a more efficient algorithm will not help you, as it is not (probably) the slowest point.
If you do something special (like 1000 rounds), it may be different, but if you just calculate the hash of the file. You need to speed up IO input, not your math.
source
share