Jump to content

Time-based one-time password

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 173.164.75.114 (talk) at 20:40, 23 May 2014 (Client implementations). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

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 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. The timestamp typically increases in 30-second intervals, so passwords generated close together in time from the same secret key will be equal.

In a typical two-factor authentication application, user authentication proceeds as follows: a user will enter username and password into a website or other server, generate a one-time password for the server using TOTP running locally on a smartphone or other device, and type that password into the server as well. The server will then also run 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 from the client's timestamp). A single secret key, to be used for all subsequent authentication sessions, must have been shared between the server and the user's device over a secure channel ahead of time. If some more steps are carried out, the user can also authenticate the server using TOTP.

Definition

TOTP is based on HOTP with a timestamp replacing the incrementing 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 step (TS). For example:

TC = (unixtime(now) - unixtime(T0)) / TS
TOTP = HOTP(SecretKey, TC), where the HOTP algorithm is defined below.
TOTP-Value = TOTP mod 10d, where d is the desired number of digits of the one-time password.

Let:

  • K be a secret key
  • C be a counter
  • HMAC(K,C) = SHA1(K ⊕ 0x5c5c... ∥ SHA1(K ⊕ 0x3636... ∥ C)) be an HMAC calculated with the SHA-1 cryptographic hash algorithm
  • Truncate be a function that selects 4 bytes from the result of the HMAC in a defined manner

Then we define

HOTP(K,C) = Truncate(HMAC(K,C)) & 0x7FFFFFFF

The mask is used to disregard the most significant bit to provide better interoperability between processors.[citation needed]

History

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.[2] In May, 2011, TOTP officially became RFC 6238.[1]

Server implementations

Client implementations

References

  1. ^ a b "RFC 6238 - TOTP: Time-Based One-Time Password Algorithm". Retrieved July 13, 2011.
  2. ^ Alexander, Madison. "OATH Submits TOTP: Time-Based One Time Password Specification to IETF". Open Authentication. Retrieved 22 February 2010.
  3. ^ "Microsoft Account Gets More Secure". The Official Microsoft Blog. Retrieved 17 April 2013.
  4. ^ "google-authenticator – Project Hosting on Google Code". Retrieved 22 February 2010.
  5. ^ "Extra security feature". Retrieved 30 January 2014.
  6. ^ "AWS Multi-Factor Authentication". Retrieved 6 March 2012.
  7. ^ "Another layer of security for your Dropbox account". Retrieved 4 May 2013.
  8. ^ "Gandi rolls out two-factor authentication". Retrieved 21 November 2013.
  9. ^ "About Two-Factor Authentication". Retrieved 4 September 2013.
  10. ^ "Introducing Support for Google Authenticator". Retrieved 4 November 2011.
  11. ^ "Linode Manager Two-Step Authentication". Retrieved 2 May 2013.
  12. ^ "Two Step Authentication". WordPress. Retrieved 29 January 2014.
  13. ^ "Two-step Signin is Here". Retrieved 25 February 2014.
  14. ^ "[FreddysHouse] Two-factor Authentication". FreddysHouse. Retrieved 10 February 2014.