I want to convert a text string to an md5 string (I already know how to do that) but I also want a way to convert it back to a normal text string not encoded. my code so far is
output = hashlib.md5("test string".encode("utf-8")).hexdigest()
I want to convert a text string to an md5 string (I already know how to do that) but I also want a way to convert it back to a normal text string not encoded. my code so far is
output = hashlib.md5("test string".encode("utf-8")).hexdigest()