summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-07-03 10:52:52 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2011-07-03 10:52:52 -0700
commitd9e7c8012d2617bf3398814bd670f9f39257d4a7 (patch)
tree7aee1d2deef510220adfe393c221ae61f69eba29
parent6fb1e60a88879167356a20a37fbdb1950d4145b3 (diff)
downloadbrdo-d9e7c8012d2617bf3398814bd670f9f39257d4a7.tar.gz
brdo-d9e7c8012d2617bf3398814bd670f9f39257d4a7.tar.bz2
Issue #1203852 by pwolanin: Changed Increase hashing iterations for more secure password hashes.
-rw-r--r--includes/password.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/password.inc b/includes/password.inc
index 93d34f81f..c0761da69 100644
--- a/includes/password.inc
+++ b/includes/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);
/**
* The minimum allowed log2 number of iterations for password stretching.