我正在将遗留应用程序移植到Laravel中。旧应用程序使用MD5在没有盐的情况下散列密码,因此我需要在Laravel中复制它。为了记录,我们正在使用salt将密码更改为bcrypt,但这不是一个简单的过程,需要用户登录才能执行此操作 - 与此同时,我只需要使用遗留哈希值进行登录。
我已按照本指南将Auth::hash
转换为MD5:How to use SHA1 encryption instead of BCrypt in Laravel 4?
当我在注册帐户时以纯文本打印密码并使用make
方法生成哈希:
public function make($value, array $options = array()) {
echo $value.'<br>'.hash('md5', $value);
exit;
return hash('md5', $value);
}
我得到以下内容:
123456
e10adc3949ba59abbe56e057f20f883e
太好了,这就是我的需要。但是,当它保存到数据库时,我完全得到一个不同的哈希。我的猜测是Laravel正在其他地方输入密码,但我无法找到覆盖它的地方和方法。
MD5Hasher.php
内的app/libraries
个文件:
<?php
class MD5Hasher implements Illuminate\Contracts\Hashing\Hasher {
/**
* Hash the given value.
*
* @param string $value
* @return array $options
* @return string
*/
public function make($value, array $options = array()) {
return hash('md5', $value);
}
/**
* Check the given plain value against a hash.
*
* @param string $value
* @param string $hashedValue
* @param array $options
* @return bool
*/
public function check($value, $hashedValue, array $options = array()) {
return $this->make($value) === $hashedValue;
}
/**
* Check if the given hash has been hashed using the given options.
*
* @param string $hashedValue
* @param array $options
* @return bool
*/
public function needsRehash($hashedValue, array $options = array()) {
return false;
}
}
我的MD5HashServiceProvider.php
:
<?php
class MD5HashServiceProvider extends Illuminate\Support\ServiceProvider {
/**
* Register the service provider.
*
* @return void
*/
public function register() {
$this->app['hash'] = $this->app->share(function () {
return new MD5Hasher();
});
}
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides() {
return array('hash');
}
}
我的AuthController.php
如下所示:
<?php
namespace App\Http\Controllers\Auth;
use Hash;
use App\User;
use Validator;
use Mail;
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\ThrottlesLogins;
use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;
class AuthController extends Controller
{
/*
|--------------------------------------------------------------------------
| Registration & Login Controller
|--------------------------------------------------------------------------
|
| This controller handles the registration of new users, as well as the
| authentication of existing users. By default, this controller uses
| a simple trait to add these behaviors. Why don't you explore it?
|
*/
use AuthenticatesAndRegistersUsers, ThrottlesLogins;
//protected $redirectTo = '/account';
/**
* Create a new authentication controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('guest', ['except' => 'getLogout']);
}
/**
* Get a validator for an incoming registration request.
*
* @param array $data
* @return \Illuminate\Contracts\Validation\Validator
*/
protected function validator(array $data)
{
return Validator::make($data, [
'name' => 'required|max:255',
'email' => 'required|email|max:255|unique:users',
'password' => 'required|confirmed|min:6',
]);
}
/**
* Create a new user instance after a valid registration.
*
* @param array $data
* @return User
*/
protected function create(array $data)
{
$this->redirectTo = '/register/step-1';
$user = User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => Hash::make($data['password']),
]);
// email the user
Mail::send('emails.register', ['user' => $user], function($message) use ($user)
{
$message->to($user->email, $user->name)->subject('Edexus - Welcome');
});
// email the admin
Mail::send('emails.register-admin', ['user' => $user], function($message) use ($user)
{
$message->to('admins@***.com', 'Edexus')->subject('Edexus - New user sign up');
});
return $user;
}
}
答案 0 :(得分:4)
查看用户模型中的密码更改器。它在控制器中散列后再次对密码进行哈希处理。
我的建议是在您的creation()和updates()模型事件中对密码进行一次哈希处理,并将其从mutator和controller中删除。
答案 1 :(得分:1)
step1:创建app / libraries文件夹并将其添加到composer的autoload.classmap
"autoload": {
"classmap": [
// ...
"app/libraries"
]
},
第2步:在app / libraries中创建两个php文件MD5Hasher.php和MD5HashServiceProvider MD5Hasher.php
<?php
namespace App\Libraries;
use Illuminate\Contracts\Hashing\Hasher;
class MD5Hasher implements Hasher {
/**
* Hash the given value.
*
* @param string $value
* @return array $options
* @return string
*/
public function make($value, array $options = array()) {
return md5($value);
}
/**
* Check the given plain value against a hash.
*
* @param string $value
* @param string $hashedValue
* @param array $options
* @return bool
*/
public function check($value, $hashedValue, array $options = array()) {
return $this->make($value) === $hashedValue;
}
/**
* Check if the given hash has been hashed using the given options.
*
* @param string $hashedValue
* @param array $options
* @return bool
*/
public function needsRehash($hashedValue, array $options = array()) {
return false;
}
}
MD5HashServiceProvider.php
<?php
namespace App\Libraries;
use Illuminate\Support\ServiceProvider;
class MD5HashServiceProvider extends ServiceProvider {
/**
* Register the service provider.
*
* @return void
*/
public function register() {
// $this->app['hash'] = $this->app->share(function () {
// return new MD5Hasher();
// });
$this->app->singleton('hash', function () {
return new MD5Hasher();
});
}
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides() {
return array('hash');
}
步骤3:在config / app.php中隐藏或删除“Illuminate \ Hashing \ HashServiceProvider :: class”并添加“App \ Libraries \ MD5HashServiceProvider :: class”