laravel - laravle5.0.22 如何修改驗證加密方式(改成MD5驗證)
PHP中文网
PHP中文网 2017-05-16 16:55:43
0
1
591

auth 登入驗證已經不是用MD5了,如何新增一個MD5的驗證,不修改原始碼的狀況。求詳細點的介紹。

PHP中文网
PHP中文网

认证0级讲师

全部回覆(1)
Peter_Zhu

題主說的是加密密碼麼?

如果是,可以在User.php加上這個


public function setPasswordAttribute($password)
    {
        $this->attributes['password'] = md5($password);
    }

================================================= ==============

修改部分:

1. 在app/下创建一个MD5/文件夹。里面创建一个MD5Hasher类(MD5Hasher.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 = []) {
        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 = []) {
        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 = []) {
        return false;
    }

}

make your provider

命令列:

php artisan make:provider MD5HashServiceProvider

在這個文件的register()方法寫上:

public function register()
    {
        $this->app['hash'] = $this->app->share(function () {
            return new MD5Hasher();
        });
    }

修改配置

config/app.php,註解下面這一行:

 Illuminate\Hashing\HashServiceProvider::class,

加上你的:

MD5HashServiceProvider::class

Happy Hacking

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!