From 1c2e6127f480979186e62c2e6ecc2971bf3a4451 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 8 Jul 2018 17:59:29 +0200 Subject: Some fixes for hashing --- app/Http/Controllers/Auth/RegisterController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/Http') diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php index a051071..14f1ef3 100644 --- a/app/Http/Controllers/Auth/RegisterController.php +++ b/app/Http/Controllers/Auth/RegisterController.php @@ -64,8 +64,8 @@ class RegisterController extends Controller protected function create(array $data) { $hashedPassword = Hash::make($data['password']); - $previousHash = User::select('hash')->orderBy('id','desc')->first(); - $summedHash = bcrypt($previousHash . $data['name'] . $data['email'] . 'password' . $hashedPassword); + $previousHash = User::select('hash')->orderBy('id','desc')->first()->hash; + $summedHash = Hash::make($previousHash . $data['name'] . $data['email'] . 'password' . $hashedPassword); // Hash::check to verify return User::create([ 'name' => $data['name'], -- cgit v1.2.3