Per #1203852: Increase hashing iterations for D7 and D8. the default log2 count in Drupal 7 was increase to 15. We should increase to match this in this module too.

Comments

pwolanin’s picture

diff --git a/password.inc b/password.inc
index 8823e5a..e38abe8 100644
--- a/password.inc
+++ b/password.inc
@@ -18,7 +18,7 @@
  * increase by 1 every Drupal version in order to counteract increases in the
  * speed and power of computers available to crack the hashes.
  */
-define('DRUPAL_HASH_COUNT', 14);
+define('DRUPAL_HASH_COUNT', 15);
pwolanin’s picture

Status: Active » Fixed

committed to 5.x and 6.x

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.