GoogleAuthenticator
GoogleAuthenticator copied to clipboard
PHP class to generate and verify Google Authenticator 2-factor authentication
I got a code from the App. like 050 221. How do i check the Code if it is right?
I entered secret in google authenticator app. It generates random code in every few seconds. But, when I match with my code it's different. $this->load->library('GoogleAuthenticator'); $oneCode = $this->googleauthenticator->getCode($secret); `$oneCode` is...
Can not verify the code generated by Google Authenticator app after deploying the code on the server
Hi, I have used this library to enable the 2FA in our app. It is working absolutely working fine on my local environment but when we deployed the code on...
This is mi new project
I'm just starting out but what got me even into this was because I lost my Google authenticator keys. I was told you could retrieve them somehow or over ride...
I've noticed that you use a timing safe equals comparison method in `verifyCode()`, yet this method itself is not time safe. That seems to be a bit of a contradiction....