Time-based One-time Password algorithm
The Time-based One-Time Password algorithm (TOTP) is an algorithm that computes a one-time password from a shared secret key and the current time. It has been adopted as Internet Engineering Task Force[1] standard RFC 6238,[1] is the cornerstone of Initiative For Open Authentication (OATH), and is used in a number of two-factor authentication systems.
TOTP is an example of a hash-based message authentication code (HMAC). It combines a secret key with the current timestamp using a cryptographic hash function to generate a one-time password. Because network latency and out-of-sync clocks can result in the password recipient having to try a range of possible times to authenticate against, the timestamp typically increases in 30-second intervals, which thus cuts the potential search space.
In a typical two-factor authentication application, setup proceeds as follows: a user enters username and password into a website or other server, the server generates a secret key which the user enters on to their TOTP application on a smartphone or other device (often by scanning a QR code). To verify that process worked, the user application immediately generates a one-time password to be checked by the server.
On subsequent authentications, the user enters their username, password and the current one-time password. The server checks the username and password as normal then also runs TOTP to verify the entered one-time password. For this to work, the clocks of the user's device and the server need to be roughly synchronized (the server will typically accept one-time passwords generated from timestamps that differ by ±1 time interval from the client's timestamp).
Contents
Definition[edit]
TOTP is based on OTP with a timestamp counter.
The current timestamp is turned into an integer time-counter (TC) by defining the start of an epoch (T0) and counting in units of a time interval (TI). For example:
- TC = floor((unixtime(now) − unixtime(T0)) / TI),
- TOTP = HOTP(SecretKey, TC),
- TOTP-Value = TOTP mod 10d, where d is the desired number of digits of the one-time password.
Implementation[edit]
According to RFC 6238, the reference implementation is as follows:
- Generate a key, K, which is an arbitrary byte string, and share it securely with the client.
- Agree upon a T0, the Unix time to start counting time steps from, and an interval, TI, which will be used to calculate the value of the counter C (defaults are the Unix epoch as T0 and 30 seconds as TI)
- Agree upon a cryptographic hash method (default is SHA-1)
- Agree upon a token length, N (default is 6)
Although RFC 6238 allows different parameters to be used, the Google implementation of the authenticator app does not support T0, TI values, hash methods and token lengths different from the default. It also expects the K secret key to be entered (or supplied in a QR code) in base-32 encoding according to RFC 3548.[2]
Once the parameters are agreed upon, token generation is as follows:
- Calculate C as the number of times TI has elapsed after T0.
- Compute the HMAC hash H with C as the message and K as the key (the HMAC algorithm is defined in the previous section, but also most cryptographical libraries support it). K should be passed as it is, C should be passed as a raw 64-bit unsigned integer.
- Take the least 4 significant bits of H and use it as an offset, O.
- Take 4 bytes from H starting at O bytes MSB, discard the most significant bit and store the rest as an (unsigned) 32-bit integer, I.
- The token is the lowest N digits of I in base 10. If the result has fewer digits than N, pad it with zeroes from the left.
Both the server and the client compute the token, then the server checks if the token supplied by the client matches the locally generated token. Some servers allow codes that should have been generated before or after the current time in order to account for slight clock skews, network latency and user delays.
Weaknesses and vulnerabilities[edit]
TOTP codes can be phished just as passwords can, though they require phishers to proxy the credentials in real time rather than collect them later on in time.
Implementations that don't limit login attempts are vulnerable to brute forcing of codes.
An attacker who steals the shared secret can generate new, valid TOTP codes at will. This can be a particular problem if the attacker breaches a large authentication database.[3]
Because TOTP devices have batteries that go flat, clocks that can de-sync, and software versions are on phones that can be lost and/or stolen, all real-world implementations have methods to bypass the protection (e.g.: printed codes, email-resets, etc.). This can cause a considerable support burden for large user-bases, and also gives fraudulent users additional vectors to exploit.
TOTP codes are valid for longer than the amount of time they show on the screen (typically twice as long). This is a concession that the authenticating and authenticated sides' clocks can be skewed by a large margin.
All One Time Password-based authentication schemes (TOTP and HOTP included, among others) are still vulnerable to session hijacking, i.e., commandeering a user's session after they have logged in.
History[edit]
A TOTP draft was developed through the collaboration of several OATH members in order to create an industry-backed standard. It complements the event-based one-time standard HOTP and offers end user organizations and enterprises more choice in selecting technologies that best fit their application requirements and security guidelines. In 2008, OATH submitted a draft version of the specification to the IETF. This version incorporates all the feedback and commentary that the authors received from the technical community based on the prior versions submitted to the IETF.[4] In May, 2011, TOTP officially became RFC 6238.[1]
Server implementations[edit]
This section contains embedded lists that may be poorly defined, unverified or indiscriminate. (April 2014) |
| Company | Product / Part |
|---|---|
| OneLogin | OneLogin Protect |
| Microsoft | Two-step Verification[5] |
| Salesforce.com | Account access, Step-up authentication |
| Authy | Account access, Step-up authentication[6] |
| ServiceNow | [7] |
| Google Authenticator[8] | |
| Login Approval, Code Generator[9] | |
| Amazon | Amazon Web Services[10] |
| Bitbucket | Account access[11] |
| Dropbox | Account access[12] |
| Evernote | Account access[13] |
| Gandi | Account access[14] |
| Zoho | Account access[15] |
| GitHub | Account access[16] |
| Hiveage | Account access[17] |
| LastPass | Account access[18] |
| Linode | Account access[19] |
| Wordpress.com | Account access[20] |
| Hover | Account access[21] |
| LinOTP | |
| OpenAM | Java based single sign-on |
| ownCloud | Account Access[22] |
| Nextcloud | TOTP two-factor authentication[23] |
| multiOTP | Tooling, web site integration, web service, radius plugin |
| privacyIDEA | Authentication backend |
| XenForo | [24] |
| Symantec | VIP Access [25] |
| HashiCorp | Vault [26][27][28] |
| Yandex | Account access [29][30] |
Client implementations[edit]
| Company | Description | Cloud sync | Windows | Mac | Linux | iOS | Android | Non-default token length | Non-default hash method | Non-default interval | Non-default start of epoch |
|---|---|---|---|---|---|---|---|---|---|---|---|
| Google Authenticator | Developed by Google and published in Playstore and AppStore | No | No | No | No | Yes | Yes | No | No | No | No |
| Microsoft Authenticator | Developed by Microsoft | No | No | No | No | Yes | Yes | Yes | Unknown | Unknown | Unknown |
| 1Password | Securely encrypted cross-platform password manager with strong, built-in one-time-password authenticator support. | Yes | Yes | Yes | Yes | Yes | Yes | No | Unknown | Unknown | Unknown |
| Authy | Developed by Twilio after an acquisition in 2015.[31] Also available for Chrome webstore. | Yes | Yes | Yes | No | Yes | Yes | Yes | No | No | No |
| FreeOTP[32] | FreeOTP has been developed from Google Authenticator and maintained by RedHat | No | No | No | No | Yes | Yes | Yes | Yes | Yes | No |
oathtool[33]
|
oathtool is a command-line interface for generating OTP codes on Linux.
|
No | No | No | Yes | No | No | Yes | Yes | Yes | Yes |
| privacyIDEA Authenticator[34] | privacyIDEA Authenticator is an Android App that implements HOTP and TOTP with a secure enrollment process for use with the privacyIDEA Authentication Server. | No | No | No | No | No | Yes | Unknown | Unknown | Yes | No |
| andOTP[35] | andOTP is an Open-source two-factor authentication App for Android 4.4+ which implements Time-based One-time Passwords (TOTP) like specified in RFC 6238. It is also compatible with Google Authenticator. | No | No | No | No | No | Yes | No | No | Yes | No |
| Invantive Authenticator[36] | TOTP password app, focusing on integration with Invantive Keychain. | No | Yes | No | No | No | No | Yes | Yes | Yes | Yes |
| LastPass Authenticator[37] | A cross-platform OTP management solution for mobile devices with cloud backup support. Also available for Windows Mobile. Launched in March 2016. | Yes | No | No | No | Yes | Yes | No | No | No | No |
| TOTP.APP | A simple web-based TOTP Authenticator without registration. | No | Yes | Yes | Yes | Yes | Yes | No | No | No | No |
| Yubico[38] | Yubico provides the Yubikey Authenticator for Desktop and Authenticator for Mobile applications. Also available on Linux. | No | Yes | Yes | Yes | No | Yes | Unknown | Unknown | Unknown | Unknown |
| KeePassXC[39] | KeePassXC is primarily a password manager, but has support for TOTP since version 2.2.0. | No | Yes | Yes | Yes | No | No | Yes | Unknown | Yes | Unknown |
References[edit]
- ^ a b c "RFC 6238 - TOTP: Time-Based One-Time Password Algorithm". Retrieved July 13, 2011.
- ^ "KeyUriFormat". Retrieved 5 August 2014.
- ^ Zetter, Kim. "RSA Agrees to Replace Security Tokens After Admitting Compromise". WIRED. Retrieved 2017-02-17.
- ^ Alexander, Madison. "OATH Submits TOTP: Time-Based One Time Password Specification to IETF". Open Authentication. Retrieved 22 February 2010.
- ^ "Microsoft Account Gets More Secure". The Official Microsoft Blog. Retrieved 17 April 2013.
- ^ https://authy.com/blog/enable-two-factor-auth-on-your-vpn/. Retrieved 26 April 2017. Missing or empty
|title=(help) - ^ "Multifactor authentication".
- ^ "google-authenticator – Project Hosting on Google Code". Retrieved 22 February 2010.
- ^ "Extra security feature". Retrieved 30 January 2014.
- ^ "AWS Multi-Factor Authentication". Retrieved 6 March 2012.
- ^ "Two-step verification is here". Retrieved 11 September 2015.
- ^ "Another layer of security for your Dropbox account". Retrieved 4 May 2013.
- ^ "Two-Step Verification Available to All Users". Retrieved 5 January 2015.
- ^ "Gandi rolls out two-factor authentication". Retrieved 21 November 2013.
- ^ "Two Factor Authentication". Retrieved 26 July 2017.
- ^ "About Two-Factor Authentication". Retrieved 4 September 2013.
- ^ "Introducing Two-Step Verification". Retrieved 7 February 2017.
- ^ "Introducing Support for Google Authenticator". Retrieved 4 November 2011.
- ^ "Linode Manager Two-Step Authentication". Retrieved 2 May 2013.
- ^ "Two Step Authentication". WordPress. Retrieved 29 January 2014.
- ^ "Two-step Signin is Here". Retrieved 25 February 2014.
- ^ "A Two-Factor-Auth Provider for TOTP (e.g. Google Authenticator)". Retrieved 30 April 2017.
- ^ "Nextcloud 11 sets new standard for security and scalability". Nextcloud. Retrieved 23 December 2016.
- ^ "[FreddysHouse] Two-factor Authentication". FreddysHouse. Retrieved 10 February 2014.
- ^ "Reversing the Symantec VIP Access Provisioning Protocol". September 29, 2014.
- ^ "Vault 0.7.1". May 5, 2017.
- ^ "Vault TOTP Secret Backend". Retrieved July 7, 2017.
- ^ "Vault TOTP Secret Backend HTTP API". Retrieved July 7, 2017.
- ^ "Yandex.Passport". January 1, 2015.
- ^ "Yandex now lets you log in without a login (or a password)". February 3, 2015.
- ^ Lardinois, Frederic (2015-02-24). "Twilio Acquires Two-Factor Authentication Service Authy". TechCrunch. Retrieved 2018-03-05.
- ^ FreeOTP
- ^ oathtool, part of OATH Toolkit.
- ^ privacyIDEA Authenticator at Github.
- ^ andOTP on Github
- ^ Invantive Authenticator.
- ^ LastPass Authenticator.
- ^ OAUTH-TOTP Support
- ^ KeePassXC 2.2.0 release notes