From 0a86da9ea78e10b4dd20bf706ee9f47986f8b972 Mon Sep 17 00:00:00 2001 From: prasad <prasad@vtiger.com> Date: Fri, 9 Feb 2018 01:13:28 +0530 Subject: [PATCH] Fixes #468: Arguments required for the hash sent --- vtlib/Vtiger/Functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vtlib/Vtiger/Functions.php b/vtlib/Vtiger/Functions.php index 1cfecae8..3bf92368 100644 --- a/vtlib/Vtiger/Functions.php +++ b/vtlib/Vtiger/Functions.php @@ -1069,7 +1069,7 @@ class Vtiger_Functions { if ($mode == 'CRYPT') { $salt = null; if (function_exists('password_hash')) { // php 5.5+ - $salt = password_hash(); + $salt = password_hash($password, PASSWORD_DEFAULT); } else { $salt = '$2y$11$'.str_replace("+",".",substr(base64_encode(openssl_random_pseudo_bytes(17)),0,22)); } -- GitLab