Is there public API for using the Google Authenticator (two factor authentication) on self-running (e.g. LAMP stack) web apps?
|
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. |
|||
|
|
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. |
||||
|
|
|
The algorithm is documented in RFC6238. Goes a bit like this:
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/ |
|||
|
|
|
You can use my solution, posted as the answer to my question (there is full Python code and explanation): 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. |
||||
|
|
|
Theres: https://www.gauthify.com that offers it as a service |
|||
|
|
|
I found this: https://github.com/PHPGangsta/GoogleAuthenticator. I tested it and works fine for me. |
|||
|
|
|
Yes, need no network service, because Google Authenticator app won't communicate with the google server, it just keeps synced with the initital secret that your server generate(input into your phone from QR code) while the time pass. |
|||
|
|