Is there public API for using the Google Authenticator (two factor authentication) on self-running (e.g. LAMP stack) web apps?

link|improve this question

feedback

6 Answers

up vote 10 down vote accepted

The project is open source. I have not used it. But it's using a documented algorithm (noted in the RFC listed on the open source project page), and the authenticator implementations support multiple accounts.

The actual process is straightforward. The one time code is, essentially, a pseudo random number generator. A random number generator is a formula that once given a seed, or starting number, continues to create a stream of random numbers. Given a seed, while the numbers may be random to each other, the sequence itself is deterministic. So, once you have your device and the server "in sync" then the random numbers that the device creates, each time you hit the "next number button", will be the same, random, numbers the server expects.

A secure one time password system is more sophisticated than a random number generator, but the concept is similar. There are also other details to help keep the device and server in sync.

So, there's no need for someone else to host the authentication, like, say OAuth. Instead you need to implement that algorithm that is compatible with the apps that Google provides for the mobile devices. That software is (should be) available on the open source project.

Depending on your sophistication, you should have all you need to implement the server side of this process give the OSS project and the RFC. I do not know if there is a specific implementation for your server software (PHP, Java, .NET, etc.)

But, specifically, you don't need an offsite service to handle this.

link|improve this answer
feedback

The algorithm is documented in RFC6238. Goes a bit like this:

  • your server gives the user a secret to install into Google Authenticator. Google do this as a QR code documented here.
  • Google Authenticator generates a 6 digit code by from a SHA1-HMAC of the Unix time and the secret (lots more detail on this in the RFC)
  • The server also knows the secret / unix time to verify the 6-digit code.

I've had a play implementing the algorithm in javascript here: http://blog.tinisles.com/2011/10/google-authenticator-one-time-password-algorithm-in-javascript/

link|improve this answer
feedback

You can use my solution, posted as the answer to my question (there is full Python code and explanation):

Google Authenticator implementation in Python

It is rather easy to implement it in PHP or Perl, I think. If you have any problems with this, please let me know.

I have also posted my code on GitHub as Python module.

link|improve this answer
feedback

There are a variety of libraries for PHP (The LAMP Stack)

PHP

https://code.google.com/p/ga4php/ http://www.idontplaydarts.com/2011/07/google-totp-two-factor-authentication-for-php/

You should be careful when implementing two-factor auth, you need to ensure your clocks on the server and client are synchronized, that there is protection in place against brute-force attacks on the token and that the initial seed used is suitably large.

link|improve this answer
feedback

You should look at RCDEVS OpenOTP (at http://www.rcdevs.com). It's a really good authentication server platform which works nicely with Google Authenticator and other soft tokens. You can integrate your apps with RADIUS, SOAP/XML, JSON, or OpenID APIs. With the SOAP or JSON interface and their samples, you should implement 2FA in your web applications quite easily. It is enterprise-grade and completely for up to 25 users!

link|improve this answer
feedback

If you want to use Google Authenticator for OpenID enabled sites, Clavid's free OpenID service supports Google Authenticator out of the box (in addition to many other strong authentication methods). If you already have a Clavid OpenID account, you can add Google Authentication in the OTP profile settings. If you do not have a Clavid OpenID account yet, you can register to a Clavid OpenID at Clavid Registration

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.