You are here

function GoogleAuthenticator::getKey in Google Authenticator login 6

Same name and namespace in other branches
  1. 7 ga4php.php \GoogleAuthenticator::getKey()

File

./ga4php.php, line 304

Class

GoogleAuthenticator

Code

function getKey($username) {
  $data = $this
    ->internalGetData($username);
  $key = $data["tokenkey"];
  return $key;
}