ghost/google-authenticator

Google 双因素验证

安装数: 2,407

依赖: 0

建议: 0

安全性: 0

星标: 12

关注者: 1

分支: 4

类型:package

v1.0.4 2020-03-25 07:10 UTC

This package is auto-updated.

Last update: 2024-09-07 10:34:39 UTC


README

laravel-admin 后台验证插件

  1. 相比验证码,安全性更高;几乎不存在破解方法
  2. 验证码有时难以识别,操作不便
  3. 一机一码,不存在账号被盗用的问题
  4. 动态验证,每30秒生成一个验证码,安全性更加有保障

composer require ghost/google-authenticator

php artisan migrate

'google-authenticator'=> [
    'enable' => true,
    'authenticatorname' => '' //名称 
],
namespace App\Admin\Controllers;

use Ghost\GoogleAuthenticator\Http\Controllers\AuthController as BaseAuthController;