Padlock Icon

Authenticatron

A simple PHP script to create TOTP secrets and corresponding QR codes,
then verify the entered response over a given time variance.
homepagedocumentationglossaryserversource

Authenticatron::new

Information

Create a new Secret and get the QR Code all in one.

Code

Authenticatron::new(string $accountName, string $issuer): array

Input

$accountName is a string containing the data your member will identify with.

$issuer is a string containing the name of your app or site.

Output

Outputs an array, where Secret is the Secret for the member, URL is an OTPAuth URL, and QR is the Data64 URI for the QR code.

array(3) {
  ["Secret"]=>
  string(16) "UTD7AA7W4BUQEGF7"
  ["URL"]=>
  string(102) "otpauth://totp/Documentation Example: Member Name?secret=UTD7AA7W4BUQEGF7&issuer=Documentation+Example"
  ["QR"]=>
  string(634) "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKQAAACkAQMAAAAjexcCAAAABlBMVEX///8AAABVwtN+AAAACXBIWXMAAA7EAAAOxAGVKw4bAAABa0lEQVRIidWWW5LDMAgEuQH3vyU3IPQgZ73fmp+oYstuVQVreCni10Z3V0ZWRHZG8Wqhc1UPKBa6SsRB5ymb57m3Xm20M2UrzTRqLlZm2GiIofmsxEuzO4r7XuPl4zt6om2MyNr/GLyg8+/8Eo1a+ntozlePmbE1ZBwaLooTu0NWRhvEd9Dmw1NzybSJYqtA3JnaQ3FiKarZSiUZ6aCKjyDDlYd51Lmn+JC1TJUlF6W0QZuKsQluoSptm9+UpFxj9/TktOTBWq43r+nmyMaHYjA8NEEEhwQiG12U0JhNSJfCtRaKOBlqJShE1nhos42ZVOppgB6q8q56QTY+2X1PV2PUQfWOo849xcJos+16TB3N7imKbJywttXeQBupN0akTXvoU0GTckQlDQ9t9VLlibb0dKdbquPJuhIqyxbaJ1861Uz3sOKhypdQW/36wkL3xKLeF39nzzt6DsZUu636Hipvqh6xqgC30N8aH/fhRdPBxVEoAAAAAElFTkSuQmCC"
}

Authenticatron::checkCode

Information

This returns a simple boolean value to prevent data-leakage and zero-equivalent values from codes or keys.

Code

Authenticatron::checkCode(string $code, string $secret, int $variance = 2): bool

Input

$code is what the user enters to authenticate. A 6 digit string, usually numeric, but not necessarily an integer.

$secret is the first result from new, that you securely stored for later.

$variance is an integer indicating the adjustment of codes with a 30 second value. Defaults to 2 either side, or 1 minute.

Output

Outputs a boolean value, true or false.

bool(true)

Google Help Lifeboat Ring Icon

Warning: The functions below are for advanced users only.

You should only need the two functions above this point to implement two-factor authentication.

Functions listed below this point should not need to be used in most production-ready environments.


Authenticatron::makeSecret

Information

Generates a 16-digit secret, never to be shared with anyone except via internal non-cachable QR code.

Generated using RandomBytes if it is available, falling back to OpenSSL if it is secure.

RandomBytes is available.

OpenSSL is installed, and secure.

Your installation will use RandomBytes.

Code

Authenticatron::makeSecret(int $length = 16): ?string

Input

$length should be an integer, longer than 16. Usually left to default.

Output

Returns a $length long string with 32bit only Characters, or null on failure (usually due to a lack of security).

Click the link to keep the secret the same when you refresh the page.

YL6SD326U6BERKCP

Authenticatron::getUrl

Information

Generates the URL for launching and adding the Secret we made earlier.

This link won't do anything unless you have a Authentication program on your computer.

Code

Authenticatron::getUrl(string $accountName, string $secret, string $issuer): string

Input

All parameters should be strings.

Output

Outputs an OTPAuth URL that gives people their Secret along with a passed Member Name and an optional Issuer.

otpauth://totp/Documentation Example: Member Name?secret=YL6SD326U6BERKCP&issuer=Documentation+Example

Authenticatron::generateQrCode

Information

Outputs a QR Code in Data64 for direct embedding from a given URL.

The GD functions are loaded.

Code

generateQrCode(string $URL, int $Size = 4, int $Margin = 2): ?string

Input

$URL is a valid OTPAuth URL in string form.

$Size is a non-zero integer, defaults to 4.

$Margin is an integer, defaults to 2.

Output

Google Camera Icon

Outputs a QR Code image in 64bit data-URI form.

QR Code for 2nd factor authentication

Try scanning this QR code with your phone.

This should open an app like Google Authenticator.

Authenticatron::getCode

Information

This is the current authentication code.

Check the Acceptable list to see the two either side.

Code

getCode(string $secret, int $timestamp = null, int $codeLength = 6): string

Input

$secret is a valid Base32 Secret in string form.

$timestamp is a unix timestamp, defaults to false to use the current timestamp.

$codeLength is a non-zero integer, the desired length of the generated code. Defaults to 6.

Output

Outputs the calculated code for the current or provided timestamp.

string(6) "709233"

Authenticatron::getCodesInRange

Information

This is the array checkCode uses to check for valid codes.

Code

Authenticatron::getCodesInRange(string $secret, int $variance = 2): array

Input

$secret is a valid Base32 Secret in string form.

$variance is an integer indicating the adjustment of codes with a 30 second value. Defaults to 2, or 1 minute.

Output

Google Authenticator Icon

Outputs the calculated code for the current or provided timestamp.

Note the indexes, which can be used to determine the time difference, and perhaps warn users on the outer bounds.

Code generation is expensive, so avoid generating any you don't want to check against later.

array(5) {
  [-2]=>
  string(6) "198372"
  [-1]=>
  string(6) "576954"
  [0]=>
  string(6) "709233"
  [1]=>
  string(6) "593523"
  [2]=>
  string(6) "988996"
}

Your phone should produce one of these from the QR code above.

These are only valid for 30 seconds, so click the Secret link to get a new list.


Google Help Lifeboat Ring Icon

Glossary

Base32 is an encoding, effectively an alphabet, that computers use made up of 32 characters.

Base32 Characters are A to Z (upper-case only), and 2 to 7.

HOTP is HMAC-based one-time password algorithm. HOTP Algorithms generate passwords from a given secret that do not expose the secret over time.

OATH is the short name for the Initiative for Open Authentication, an organisation dedicated to keeping secure authentication free.

OTP Auth stands for one-time password authentication.

QR Code (Quick Response Code) is a type of 2D matrix barcodes with built in redundancy, commonly used to scan links into mobile phones through cameras.

TOTP abbreviates Time-based One-time Password Algorithm. TOTP Algorithms generate passwords from a given secret that are only valid over a very specific time period.


Google Help Lifeboat Ring Icon

Further Reading

Visit our documentation for a more thorough description of the options and functions available to you.

Take a look at the glossary if there are any terms you don't understand.

The server page can be used if this script is installed on your server to check for requirements.

This work is predominantly MIT licensed. See the LICENSE.md file for more information.

If you're ready to rock, check out the source!