Мне удалось получить ввод от пользователя и затем зашифровать его, используя шестнадцатеричный дайджест md5 и md5, но я не могу найти хороший способ расшифровки этого кода, может кто-нибудь помочь?
username = input("Please enter your username")
passwd = input("Please enter your username")
for line in open("test.txt","r").readlines(): # Read the lines
line = (str(hash_object.hexdigest()))
login_info = line.split()# Split on the space, and store the results in a list of two strings
#needs to decode login info so that it is not encoded
if username == login_info[0] and passwd == login_info[1]:
print("Login allowed")
else:
print("inccorect")