You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When validating TOTP with Skew > 0 and the current time window counter is 0,
the validation logic attempts to check previous time windows by subtracting
from counter 0, resulting in negative values. This is invalid as HOTP counters
must be non-negative integers.
Example:
Current counter = 0
Skew = 1
Results in checking counters: [0, 1, -1] // -1 is invalid
The text was updated successfully, but these errors were encountered:
When validating TOTP with Skew > 0 and the current time window counter is 0,
the validation logic attempts to check previous time windows by subtracting
from counter 0, resulting in negative values. This is invalid as HOTP counters
must be non-negative integers.
Example:
The text was updated successfully, but these errors were encountered: