承接 lfkeitel/phptotp 相关项目开发

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

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

lfkeitel/phptotp

最新稳定版本:v1.1.0

Composer 安装命令:

composer require lfkeitel/phptotp

包简介

TOTP/HOTP library for PHP

README 文档

README

This is a simple PHP library and script that will generate HOTP and TOTP tokens. The library fully conforms to RFCs 4226 and 6238. All hashing algorithms are supported as well as the length of a token and the start time for TOTP.

Installation

Add the following to your composer.json:

{
    "require": {
        "lfkeitel/phptotp": "^1.0"
    }
}

And run composer install.

Usage

<?php

use lfkeitel\phptotp\{Base32,Totp};

# Generate a new secret key
# Note: GenerateSecret returns a string of random bytes. It must be base32 encoded before displaying to the user. You should store the unencoded string for later use.
$secret = Totp::GenerateSecret(16);

# Display new key to user so they can enter it in Google Authenticator or Authy
echo Base32::encode($secret);

# Generate the current TOTP key
# Note: GenerateToken takes a base32 decoded string of bytes.
$key = (new Totp())->GenerateToken($secret);

# Check if user submitted correct key
if ($user_submitted_key !== $key) {
    exit();
}

Documentation

lfkeitel\phptotp\Totp extends Hotp

  • __construct($algo = 'sha1', $start = 0, $ti = 30): Totp
    • $algo: Algorithm to use when generating token
    • $start: The beginning of time
    • $ti: Time interval between tokens
  • GenerateToken($key, $time = null, $length = 6): string
    • $key: Secret key as bytes, base32 decoded
    • $time: Time to use for the token, defaults to now
    • $length: Length of token

lfkeitel\phptotp\Hotp

  • __construct($algo = 'sha1'): Hotp
    • $algo: Algorithm to use when generating token
  • GenerateToken($key, $count = 0, $length = 6): string
    • $key: Secret key as bytes, base32 decoded
    • $count: HOTP counter
    • $length: Length of token
  • GenerateSecret($length = 16): string
    • $length: Length of string in bytes
    • Return: This method returns a string of random bytes, use Base32::encode when displaying to the user.

lfkeitel\phptotp\Base32

  • static encode($data): string
    • $data: Data to base32 encode
  • static decode($data): string
    • $data: Data to base32 decode

generate.php

generate.php is a script that acts exactly like Google Authenticator. It takes a secret key, either as an argument or can be entered when prompted on standard input, and generates a token assuming SHA1, Unix timestamp for start, and 30 second time intervals. The secret key should be base32 encoded.

$ ./generate.php
Enter secret key: turtles
Token: 338914
$

License

This software is released under the MIT license which can be found in LICENSE.

统计信息

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

GitHub 信息

  • Stars: 84
  • Watchers: 2
  • Forks: 15
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-02-06