This means, $04$ = 4 salts right? I just needed a 60-second protection against 8-GPU Nvidia crackers or whatever brute-force attacks, with minimum compute time on server (currently with 4 salts, my home computer creates 350 captchas per second, with the highest bottleneck on bcrypt's latency that is 2x-3x of mongodb upsert operation).
I'm using genSalt method for protecting a custom captcha. It does not reduce the cost to 1,2,3 when I'm assigning 1,2,3 to the cost parameter.
but it produces this:
$2b$04$zJw1mfUKJ2/su4oFh1SDtuA7Plg5jzHPy3yx9JeXeGFTc6hfgMZuK
This means,
$04$
= 4 salts right? I just needed a 60-second protection against 8-GPU Nvidia crackers or whatever brute-force attacks, with minimum compute time on server (currently with 4 salts, my home computer creates 350 captchas per second, with the highest bottleneck on bcrypt's latency that is 2x-3x of mongodb upsert operation).