Skip to content

stolendata/totp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 

Repository files navigation

TOTP (RFC 6238)

Copyright (c) 2014 Robin Leffmann

TOTP is a simple, compact and bare-bones PHP class for calculating TOTP tokens, commonly used for two-factor authentication with mobile apps. It comprises three public functions of which only one is necessary to call to get a token.

Usage

Simply call TOTP::getOTP( $secret [, $digits = 6 [, $period = 30 [, $offset = 0 [, $algo = 'sha1' ]]]] ) which returns an array with the key otp holding the authentication token, or the key err describing an eventual error.

The other two functions are meant to be convenient utilities:

TOTP::genSecret( [ $length = 24 ] ) generates a TOTP-compatible pseudorandom secret in Base32 ASCII, returning an array with the key secret holding the random secret or the key err describing an eventual error.

TOTP::genURI( $account, $secret [, $digits = null [, $period = null [, $issuer = null [, $algo = null ]]]] ) returns an array with the key uri holding an otpauth:// style URI providing the supplied parameters, which can e.g. be embedded in a QR code image, or the key err describing an eventual error.

Donations

BTC: 1EDhbo9ejdKUxNW3GPBh1UmocC1ea1TvE5
LTC: LaDuRFwEt1V26pmJJH94auDvxqN3rRFqPj
DOGE: DJ7vQ1dNRfebb1umVHsHxoMcd2Zq5L6LKp

License

TOTP is released under the Creative Commons BY-NC-SA 4.0 license: http://creativecommons.org/licenses/by-nc-sa/4.0/

About

Simple TOTP (RFC 6238) class

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages