The timestamp returned for Yubikey OTP requests is in the local timezone and
not in UTC, as expected. The time string is built with strftime() which uses
localtime() by default.
Here is the fix:
iso_time = time.strftime("%Y-%m-%dT%H:%M:%S", time.gmtime())
Original issue reported on code.google.com by gc...@byte-storm.com on 8 Feb 2015 at 4:05
Original issue reported on code.google.com by
gc...@byte-storm.com
on 8 Feb 2015 at 4:05