diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | ext/standard/php_password.h | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -11,6 +11,7 @@ PHP NEWS (Ryan McCullagh, Nikita) . Fixed bug #75921 (Inconsistent: No warning in some cases when stdObj is created on the fly). (David Walker) + . Increased default time_cost for argon2i(d) password_hash to 3. (Sara) - COM: . Deprecated registering of case-insensitive constants from typelibs. (cmb) diff --git a/ext/standard/php_password.h b/ext/standard/php_password.h index ecb34780c7..46ed4f0368 100644 --- a/ext/standard/php_password.h +++ b/ext/standard/php_password.h @@ -34,7 +34,7 @@ PHP_MSHUTDOWN_FUNCTION(password); #if HAVE_ARGON2LIB #define PHP_PASSWORD_ARGON2_MEMORY_COST 1<<10 -#define PHP_PASSWORD_ARGON2_TIME_COST 2 +#define PHP_PASSWORD_ARGON2_TIME_COST 3 #define PHP_PASSWORD_ARGON2_THREADS 2 #endif |