承接 iescarro/otphp 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

iescarro/otphp

最新稳定版本:v1.0.0

Composer 安装命令:

composer require iescarro/otphp

包简介

README 文档

README

A php library for generating one time passwords according to RFC 4226 and the HOTP RFC

This is compatible with Google Authenticator apps available for Android and iPhone, and now in use on GMail

This is a port of the rotp ruby library available at https://github.com/mdp/rotp

Note : This project has not been updated since it was created. If you need a PHP OTP library, you should check out the great fork by Spomky-Labs at https://github.com/Spomky-Labs/otphp which has been improved and is currently maintained.

Quick overview of using One Time Passwords on your phone

  • OTP's involve a shared secret, stored both on the phone and the server
  • OTP's can be generated on a phone without internet connectivity(AT&T mode)
  • OTP's should always be used as a second factor of authentication(if your phone is lost, you account is still secured with a password)
  • Google Authenticator allows you to store multiple OTP secrets and provision those using a QR Code(no more typing in the secret)

Installation

composer require iescarro/otphp

Use

Time based OTP's

require __DIR__ . '/vendor/autoload.php';
$totp = new \OTPHP\TOTP("base32secret3232");
$totp->now(); // => 492039

// OTP verified for current time
$totp->verify(492039); // => true
//30s later
$totp->verify(492039); // => false

Counter based OTP's

require __DIR__ . '/vendor/autoload.php';
$hotp = new \OTPHP\HOTP("base32secretkey3232");
$hotp->at(0); // => 260182
$hotp->at(1); // => 55283
$hotp->at(1401); // => 316439

// OTP verified with a counter
$totp->verify(316439, 1401); // => true
$totp->verify(316439, 1402); // => false

Google Authenticator Compatible

The library works with the Google Authenticator iPhone and Android app, and also includes the ability to generate provisioning URI's for use with the QR Code scanner built into the app.

$totp->provisioning_uri(); // => 'otpauth://totp/alice@google.com?secret=JBSWY3DPEHPK3PXP'
$hotp->provisioning_uri(); // => 'otpauth://hotp/alice@google.com?secret=JBSWY3DPEHPK3PXP&counter=0'

This can then be rendered as a QR Code which can then be scanned and added to the users list of OTP credentials.

Working example

Scan the following barcode with your phone, using Google Authenticator

QR Code for OTP

Now run the following and compare the output

<?php
require_once('vendor/autoload.php');
$totp = new \OTPHP\TOTP("JBSWY3DPEHPK3PXP");
echo "Current OTP: ". $totp->now();

Licence

This software is release under MIT licence.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-10-16