1
0
Fork 0
mirror of https://github.com/sbrl/Pepperminty-Wiki.git synced 2024-10-31 21:33:00 +00:00

Skip the password hashing cost recheck if it's been disabled

This commit is contained in:
Starbeamrainbowlabs 2018-05-10 23:30:00 +01:00
parent 1cc92ba260
commit 41ea63281c
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -153,7 +153,10 @@ function do_password_hash_code_update() {
// There's no point if we're using Argon2i, as it doesn't take a cost // There's no point if we're using Argon2i, as it doesn't take a cost
if(hash_password_properties()["algorithm"] == PASSWORD_ARGON2I) if(hash_password_properties()["algorithm"] == PASSWORD_ARGON2I)
return; return;
// Skip rechecking if the automatic check has been disabled
if($settings->password_cost_time_interval == -1)
return;
// Skip the recheck if we've done one recently // Skip the recheck if we've done one recently
if(isset($settings->password_cost_time_lastcheck) && if(isset($settings->password_cost_time_lastcheck) &&
time() - $settings->password_cost_time_lastcheck < $settings->password_cost_time_interval) time() - $settings->password_cost_time_lastcheck < $settings->password_cost_time_interval)