01-23-2021, 10:30 AM
Bcrypt hashes have a configurable cost or round count. The benchmark uses 05 cost, your hash is 10 cost. The cost for bcrypt represents 2^cost rounds of hashing. So 2^10 instead of 2^5, which is a significantly higher and significantly slower hash to generate. This is working as expected.