huaweichenai/google-authenticator 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

huaweichenai/google-authenticator

最新稳定版本:1.0

Composer 安装命令:

composer require huaweichenai/google-authenticator

包简介

基于Google Authenticator双因素身份验证实现动态码验证

README 文档

README

Installation

composer require huaweichenai/google-authenticator

Usage:

  • 1:创建密钥
$authenticator = new Authenticator();
$secret = $authenticator->createSecret();
  • 2:获取手机端扫描二维码链接(用于手机端获取动态口令)
$authenticator = new Authenticator();
$qrCodeUrl  = $authenticator->getQRCodeGoogleUrl('username', $secret, 'title');

不支持使用此方法,此方法向第三方分享了你的安全性,建议使用下面的方法获取二维码信息自行生成二维码

  • 3:获取手机端扫描二维码的信息(使用此信息生成二维码用于手机端获取动态口令)
$authenticator = new Authenticator();
$authCode  = $authenticator->getAuthCode('username', $secret, 'title');
  • 4:动态口令认证
$authenticator = new Authenticator();
$verifyCode  = $authenticator->verifyCode($secret, 'code验证码');
if (verifyCode) {
  echo '认证成功';
} else {
  echo '认证失败';
}

统计信息

  • 总下载量: 73
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-4-Clause
  • 更新时间: 2024-12-19