欢迎光临
感谢一路有你

tp5 使用googleauthenticator 谷歌验证

如果你对该文章中的内容有疑问/不解,可以点击此处链接提问
要注明问题和此文章链接地址 点击此处跳转
 

下载扩展
https://packagist.org/packages/phpgangsta/googleauthenticator

使用:

<?php
//引入
require_once 'PHPGangsta/GoogleAuthenticator.php';
//实例化
$ga = new PHPGangsta_GoogleAuthenticator();
//创建secret
$secret = $ga->createSecret();
echo "Secret is: ".$secret."\n\n";

//当前blog 你可以随意设置,唯一值
$qrCodeUrl = $ga->getQRCodeGoogleUrl('Blog', $secret);
echo "Google Charts URL for the QR-Code: ".$qrCodeUrl."\n\n";

//获取code码
$oneCode = $ga->getCode($secret);
echo "Checking Code '$oneCode' and Secret '$secret':\n";

//判断code是否一致
$checkResult = $ga->verifyCode($secret, $oneCode, 2);    // 2 = 2*30sec clock tolerance
if ($checkResult) {
    echo 'OK';
} else {
    echo 'FAILED';
}

 


使用谷歌验证可以大大加强网站的安全,我的这个网站就是使用了此功能

该谷歌验证是基于时间的,根据时间的变化而改变

赞(1) 打赏
未经允许不得转载:王明昌博客 » tp5 使用googleauthenticator 谷歌验证
分享到: 更多 (0)

相关推荐

  • 暂无文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏

×
订阅图标按钮