在 Laravel 4 中使用 SHA1 加密
要在 Laravel 4 中实现 SHA1 加密而不是 BCrypt,您必须重写 Hash 模块。 Laravel 的依赖注入原理使这变得相对简单。
第 1 步:创建 SHAHasher 类
在 app/libraries 中创建一个 SHAHasher 类,该类实现 IlluminateHashingHasherInterface(或 IlluminateContractsHashingHasher)拉维尔 5)。实现三个必需的方法:
<code class="php">class SHAHasher implements Illuminate\Hashing\HasherInterface { // Hash a given value public function make($value, array $options = array()) {} // Verify a given plain value against a hash public function check($value, $hashedValue, array $options = array()) {} // Check if a hash needs to be rehashed public function needsRehash($hashedValue, array $options = array()) {} }</code>
第 2 步:注册 SHAHasher 服务提供者
在 app/libraries 中创建一个 SHAHashServiceProvider,扩展 IlluminateSupportServiceProvider 并将其注册为哈希组件:
<code class="php">class SHAHashServiceProvider extends Illuminate\Support\ServiceProvider { // Register the service provider public function register() {} // Get the services provided by the provider public function provides() {} }</code>
第 3 步:修改应用程序配置
附加说明
以上是如何在 Laravel 4 中使用 SHA1 加密代替 BCrypt?的详细内容。更多信息请关注PHP中文网其他相关文章!