Google Authenticator is an open-sourced application, created by Google and designed to support creation of one-time-passwords based on time (valid for a short period of time) or on number of intervals (invalidating after one use).

learn more… | top users | synonyms

0
votes
0answers
45 views

Google Authenticator - how compare codes?

I'm using Google Authenticator on a website admin page. I have the PHP version of the script and I've install Google Authenticator and the required code for my PHP script onto an iphone and when I ...
7
votes
2answers
171 views

Is it possible to salt and or hash HOTP/TOTP secret on the server?

I am building a two-factor authentication system based on the TOTP/HOTP. In order to verify the otp both server and the otp device must know the shared secret. Since HOTP secret is quite similar to ...
0
votes
0answers
142 views

403 Forbidden when using access token from OAuth2ServiceAccount - Error Site must be added to your account and verified

403 Forbidden when using access token from OAuth2ServiceAccount My request is inserting sitemap.xml to webmaster tool here the response from google HTTP/1.1 403 Forbidden Content-length: 48 ...
0
votes
1answer
97 views

Invalid grant error is being thrown while retrieving accessToken for Google Service account request

package com.google.serviceacc; import java.io.FileInputStream; import java.io.IOException; import java.security.InvalidKeyException; import java.security.KeyStore; import ...
2
votes
1answer
164 views

Store secret key for TOTP

I'm looking to setup my website (C#/SQL 2008) to allow two factor authentication using Google Authenticator. I have the site working, from getting the QR code to generating the previous/current/next ...
1
vote
1answer
119 views

Is Google Authenticator compatible with the RFC6238 reference implementation?

Is Google Authenticator compatible with the RFC6238 reference implementation? I think there are differences in encoding of the timestamp and the seed and the implementations seem incompatible. Could ...
0
votes
0answers
118 views

Google Authenticator Time Sync Issue

I am having one issue with the Google Authenticator which I am trying to use. I have google authenticator application in my phone. I have written one server side code to generate the tokens for ...
1
vote
1answer
186 views

Google Authenticator Multi-part (TOTP) login implementation for CakePHP

I am looking to implement Google Authenticator into a CakePHP application. The trick is that a user can determine whether or not they want to use it. This means that if a user is using the multi-part ...
1
vote
0answers
245 views

implementing Google Authenticator in java

i want to implement Google authenticator in my Android application , actually i want to insert a Serial generated by google (the serial code generated when you want to change your gmail to 2 steps ...
1
vote
0answers
164 views

google authenticator implementation java android

i building an Android application that must have an Google authenticator code(Password) to access to it. the problem that i generate the serial code of 16 characters but when i try to write the ...
29
votes
1answer
7k views

Google Authenticator implementation in Python

I am trying to use one-time passwords that can be generated using Google Authenticator application. What Google Authenticator does Basically, Google Authenticator implements two types of passwords: ...
2
votes
1answer
497 views

Perl Authen::OATH and Google Authenticator - incompatible?

My understanding (which may obviously be wrong) is that the Authen::OATH module is compatible with the totp codes generated by the Google Authenticator App. But it doesn't work for me, whereas a ...
1
vote
1answer
588 views

Rails 3 devise + google authenticator?

I'm trying to integrate the Google Authenticator OATH (not OAuth) one-time password authentication with devise, but can't find any pointers on whether it's already done or how to proceed. (Plenty of ...
1
vote
1answer
336 views

Google Authenticator Scratch Codes

I've done some googling on this but can't seem to find if this is possible. I'm looking to implement Google Authenticator on my website and it seems fairly easy to generate a nice QRCode for the user ...
12
votes
3answers
1k views

Is there a tutorial on how to implement Google Authenticator in .NET apps?

I'm looking for a tutorial on how to use Google Authenticator in .NET-apps. Does this exist, and if so, where can I find it? I understand that this can be used to add two-factor-authentication to ...