Last active
April 28, 2022 21:58
-
-
Save Lunik/a4781341a6706eef4349b20143b95282 to your computer and use it in GitHub Desktop.
TOTP implémentation in Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://lunik.tiwabbit.fr/blog/articles/understanding-totp-en.html#understanding-totp | |
import base64 | |
import hmac | |
import struct | |
import time | |
def hotp(counter, key, digits_count=6): | |
bytes_counter = struct.pack('>Q', counter) | |
key = key + '=' * ((8 - len(key)) % 8) | |
bytes_key = base64.b32decode(key) | |
mac = hmac.new(bytes_key, bytes_counter, "SHA1").digest() | |
offset = mac[-1] & 0x0F | |
dynamic_truncation = mac[offset:offset+4] | |
extract_31 = struct.unpack('>L', dynamic_truncation)[0] & 0x7fffffff | |
return str(extract_31)[-digits_count:].zfill(digits_count) | |
def totp(key): | |
counter = int(time.time() / 30) | |
return hotp(counter, key) | |
if __name__ == "__main__": | |
key = input("Enter secret key : ").upper() | |
print("TOTP code :", totp(key)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment