Download the PHP package lfkeitel/phptotp without Composer
On this page you can find all versions of the php package lfkeitel/phptotp. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download lfkeitel/phptotp
More information about lfkeitel/phptotp
Files in lfkeitel/phptotp
Informations about the package phptotp
HOTP/TOTP Token Generator
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:
And run composer install
.
Usage
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 bytesReturn
: 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.
License
This software is released under the MIT license which can be found in LICENSE.