beav33 Posted January 28, 2007 Share Posted January 28, 2007 Heres the prob. I have a forgot password page, and I am being lazy. I dont want to generate a new password, I just want to send them their original one. How do I unconvert the md5.[color=red]$email=$row_Recordset1['email'];$password=$row_Recordset1['password'];$toaddress = $email;$subject ='bla';$mesg ="bla";$fromaddress ='bla';mail($toaddress, $subject, $mesg, $fromaddress);[/color]This sends an email with the password in md5, so how do I change it back to original form?Thank You for helpbeav33 Link to comment https://forums.phpfreaks.com/topic/36090-how-to-change-md5-convert/ Share on other sites More sharing options...
alpine Posted January 28, 2007 Share Posted January 28, 2007 In short: you can't reverse it Link to comment https://forums.phpfreaks.com/topic/36090-how-to-change-md5-convert/#findComment-171303 Share on other sites More sharing options...
beav33 Posted January 28, 2007 Author Share Posted January 28, 2007 What I was afraid of.I will generate a randomThank you for your helpbeav33 Link to comment https://forums.phpfreaks.com/topic/36090-how-to-change-md5-convert/#findComment-171309 Share on other sites More sharing options...
rantsh Posted January 28, 2007 Share Posted January 28, 2007 No can do!. MD5 has no way back, if you have a remember password page and want to send their original one you could try and encrypt with other algorithms Link to comment https://forums.phpfreaks.com/topic/36090-how-to-change-md5-convert/#findComment-171314 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.