Created
May 4, 2023 07:00
-
-
Save georgepadayatti/65d69ead4bd710a2f0ee58d0fb6dece1 to your computer and use it in GitHub Desktop.
Generate Time-based One-time Password
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
#!/usr/bin/env python3 | |
import base64 | |
import hmac | |
import struct | |
import sys | |
import time | |
def hotp(key, counter, digits=6, digest='sha1'): | |
key = base64.b32decode(key.upper() + '=' * ((8 - len(key)) % 8)) | |
counter = struct.pack('>Q', counter) | |
mac = hmac.new(key, counter, digest).digest() | |
offset = mac[-1] & 0x0f | |
binary = struct.unpack('>L', mac[offset:offset+4])[0] & 0x7fffffff | |
return str(binary)[-digits:].zfill(digits) | |
def totp(key, time_step=30, digits=6, digest='sha1'): | |
return hotp(key, int(time.time() / time_step), digits, digest) | |
def main(): | |
args = [int(x) if x.isdigit() else x for x in sys.argv[1:]] | |
for key in sys.stdin: | |
print(totp(key.strip(), *args)) | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment