if the username is 4 character long |
==> |
here is a partial solution to this keygenme problem:
#**********************************************
#by shb
def string_to_hex(s):
return ''.join(format(ord(c), '02x') for c in s)
print(int(string_to_hex(input("put a username")[::-1].upper()),16))
|
==> |