Giter Site home page Giter Site logo

otphp's Introduction

OTPHP - A PHP One Time Password Library

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

clone this repository and include lib/otphp.php in your project.

Use

Time based OTP's

$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

$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/[email protected]?secret=JBSWY3DPEHPK3PXP'
$hotp->provisioning_uri(); // => 'otpauth://hotp/[email protected]?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('otphp/lib/otphp.php');
$totp = new \OTPHP\TOTP("JBSWY3DPEHPK3PXP");
echo "Current OTP: ". $totp->now();

Licence

This software is release under MIT licence.

otphp's People

Watchers

soitun avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.