Git Product home page Git Product logo

Comments (1)

suvash avatar suvash commented on May 24, 2024

Hi Victor,
Thanks for the question.

For the TOTP based password, each "time step" is a period of time where the server and client calculate the tokens(password). Once the period passes, it steps into a new period and now a new token need to be calculated/compared.

For eg. if the period(time step) was of 1 second, the tokens would have to calculated each new second. This would be too short of a time for the user to enter the password on the client and have it compared on the server.

The idea is to have a long enough period(time step) so that the client+user+server+network+etc. have enough time to compare the tokens without recalculations happening. As of now, it's an industry wide standard to use 30 seconds for this (though, not a requirement as long as your client is not hardcoded to 30 secs). Thus, new tokens are generated/calculated every 30 seconds.
Of course, If your use case requires a longer waiting time, you are free to customize it.

Another thing to remember is that since TOTP is based on time, and clocks on various devices are not necessarily in sync, it's all fairly popular to calculate 1 time step prior and 1 time step after to allow for this deviation. That way you have 3 tokens (1 from current time-step t, 1 from t-1, 1 from t+1)

Hope that clarifies.

from one-time.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.