summaryrefslogtreecommitdiffstats
path: root/inc/crypto.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/crypto.inc.php')
-rw-r--r--inc/crypto.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/crypto.inc.php b/inc/crypto.inc.php
index 54cdef8a..56f5073c 100644
--- a/inc/crypto.inc.php
+++ b/inc/crypto.inc.php
@@ -10,7 +10,7 @@ class Crypto
*/
public static function hash6($password)
{
- $salt = substr(str_replace('+', '.', base64_encode(pack('N4', mt_rand(), mt_rand(), mt_rand(), mt_rand()))), 0, 22);
+ $salt = substr(str_replace('+', '.', base64_encode(pack('N4', mt_rand(), mt_rand(), mt_rand(), mt_rand()))), 0, 16);
$hash = crypt($password, '$6$' . $salt);
if (strlen($hash) < 60) Util::traceError('Error hashing password using SHA-512');
return $hash;