One Time Passwords (OTPs) are an mechanism to improve security over passwords alone. When a Time-based OTP (TOTP) is stored on a user's phone, and combined with something the user knows (Password), you have an easy on-ramp to Multi-factor authentication without adding a dependency on a SMS provider. This Password and TOTP combination is used by many popular websites including Google, Github, Facebook, Salesforce and many others.
The otp
library enables you to easily add TOTPs to your own application, increasing your user's security against mass-password breaches and malware.
Because TOTP is standardized and widely deployed, there are many mobile clients and software implementations.
- Generating QR Code images for easy user enrollment.
- Time-based One-time Password Algorithm (TOTP) (RFC 6238): Time based OTP, the most commonly used method.
- HMAC-based One-time Password Algorithm (HOTP) (RFC 4226): Counter based OTP, which TOTP is based upon.
For an example of a working enrollment work flow, Github has documented theirs, but the basics are:
- Generate new TOTP Key for a User.
key,_ := totp.Generate(...)
. - Display the Key's Secret and QR-Code for the User.
key.Secret()
andkey.Image(...)
. - Test that the user can successfully use their TOTP.
totp.Validate(...)
. - Store TOTP Secret for the User in your backend.
key.Secret()
- Provide the user with "recovery codes". (See Recovery Codes bellow)
- Prompt and validate User's password as normal.
- If the user has TOTP enabled, prompt for TOTP passcode.
- Retrieve the User's TOTP Secret from your backend.
- Validate the user's passcode.
totp.Validate(...)
When a user losses access to their TOTP device, they would no longer have access to their account. Because TOTPs are often configured on mobile devices that can be lost, stolen or damaged, this is a common problem. For this reason many providers give their users "backup codes" or "recovery codes". These are a set of one time use codes that can be used instead of the TOTP. These can simply be randomly generated strings that you store in your backend. Github's documentation provides an overview of the user experience.
Please open issues in Github for ideas, bugs, and general thoughts. Pull requests are of course preferred :)
otp
is licensed under the Apache License, Version 2.0