mirror of https://github.com/xBytez/duo-cli
Don't ouput secret, count by default. Don't prepend token with "Code: " by default.
This commit is contained in:
parent
17348af064
commit
999157d60e
10
duo_gen.py
10
duo_gen.py
|
@ -13,11 +13,15 @@ secret = f.readline()[0:-1]
|
||||||
offset = f.tell()
|
offset = f.tell()
|
||||||
count = int(f.readline())
|
count = int(f.readline())
|
||||||
|
|
||||||
print("secret", secret)
|
debug = False
|
||||||
print("count", count)
|
|
||||||
|
|
||||||
hotp = pyotp.HOTP(secret)
|
hotp = pyotp.HOTP(secret)
|
||||||
print("Code:", hotp.at(count))
|
if debug:
|
||||||
|
print("secret", secret)
|
||||||
|
print("count", count)
|
||||||
|
print("code:", hotp.at(count))
|
||||||
|
else:
|
||||||
|
print(hotp.at(count))
|
||||||
|
|
||||||
f.seek(offset)
|
f.seek(offset)
|
||||||
f.write(str(count + 1))
|
f.write(str(count + 1))
|
||||||
|
|
Loading…
Reference in New Issue