11-18-2024, 05:20 PM
You can't reach the speed in the benchmark because the benchmark tests a hash with cost 5 and your hash is cost 10.
The cost refers to the number of iterations the algorithm must do, cost 5 is 2^5 (32 iterations), and your hash is 2^10 (1024 iterations).
The cost refers to the number of iterations the algorithm must do, cost 5 is 2^5 (32 iterations), and your hash is 2^10 (1024 iterations).