When i run the following code simultaneously on mac and windows:
import pyotp
import time
key = "my_secret_key"
totp = pyotp.TOTP(key)
while True:
print(totp.now())
time.sleep(1)
the produced six-digit codes are different. The one on mac corresponds with the code from google authentication. So there probably is some issue on windows
When i run the following code simultaneously on mac and windows:
the produced six-digit codes are different. The one on mac corresponds with the code from google authentication. So there probably is some issue on windows