mrman11d Posted December 10, 2009 Share Posted December 10, 2009 ok, im making a little login thing that uses my invision powerboard database, i need to know how i can do this. Honestly i have pretty much no expirence in PHP and i need to know how I can put this encryption in my code, and also is the password value stored in member_login_key. Thanks in advanced Link to comment https://forums.phpfreaks.com/topic/184583-need-help-with-invision-powerboard-password-encryption/ Share on other sites More sharing options...
Gayner Posted December 10, 2009 Share Posted December 10, 2009 ok, im making a little login thing that uses my invision powerboard database, i need to know how i can do this. Honestly i have pretty much no expirence in PHP and i need to know how I can put this encryption in my code, and also is the password value stored in member_login_key. Thanks in advanced Is it md5 with salt ? Link to comment https://forums.phpfreaks.com/topic/184583-need-help-with-invision-powerboard-password-encryption/#findComment-974440 Share on other sites More sharing options...
mrman11d Posted December 10, 2009 Author Share Posted December 10, 2009 Honestly i have no idea, but i believe it is a combo of both, researching on the internet i have found things like this but i have no clue how to use them in my code. People have suggested that i use converge, and googling that i didnt find anything helpfull $result1 = mysql_query("SELECT c.converge_pass_salt AS `salt` FROM `ibf_members_converge` c LEFT JOIN `ibf_members` m ON m.id=c.converge_id WHERE m.name = '$username'"); $row = mysql_fetch_assoc($result1); $mypassword = md5($row['salt']); $mypassword = md5('mypassword'); $mypassword = md5($new_pass); Link to comment https://forums.phpfreaks.com/topic/184583-need-help-with-invision-powerboard-password-encryption/#findComment-974442 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.