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
This happens here where the current time is checked against the message's valid time range. If the system clock is off by a bit, it fails even for valid messages.
Proposed solution
Introduce a time buffer. For example 10 secs .
if(self.valid_from <= now - 10) && (self.not_valid_after >= now + 10)
Versioning
This fix will only require bumping the patch version number
The text was updated successfully, but these errors were encountered:
Signature verification fails when clock is lagging and it gives this error:
This happens here where the current time is checked against the message's valid time range. If the system clock is off by a bit, it fails even for valid messages.
Proposed solution
Introduce a time buffer. For example
10 secs
.Versioning
This fix will only require bumping the patch version number
The text was updated successfully, but these errors were encountered: