Azu Posted June 5, 2007 Share Posted June 5, 2007 Can somebody please tell me how to make it so that login passwords are sent over a secure connection so hackers cannot intercept them so easily? Quote Link to comment https://forums.phpfreaks.com/topic/54281-password-over-a-secure-connection/ Share on other sites More sharing options...
dream25 Posted June 5, 2007 Share Posted June 5, 2007 just give like this.... sha1(md5($s).strrev(sha1($s))) strrev,strlen, md5,sha1.. these are the passwords protectors.. Quote Link to comment https://forums.phpfreaks.com/topic/54281-password-over-a-secure-connection/#findComment-268352 Share on other sites More sharing options...
Azu Posted June 5, 2007 Author Share Posted June 5, 2007 Thanks.. this will make it so when somebody puts in their password and logs in, the password is sent over a secure connection? I'm gonna go try it brb.. Quote Link to comment https://forums.phpfreaks.com/topic/54281-password-over-a-secure-connection/#findComment-268765 Share on other sites More sharing options...
thefortrees Posted June 5, 2007 Share Posted June 5, 2007 Those are different encrypt methods. not a secure connection, BUT they are extremely secure and nearly impossible to decipher. Quote Link to comment https://forums.phpfreaks.com/topic/54281-password-over-a-secure-connection/#findComment-268770 Share on other sites More sharing options...
Azu Posted June 7, 2007 Author Share Posted June 7, 2007 OH you mean it will make it so that the data being transmitted is encrypted so hackers can't easily listen to the connection to find the password? Okay sweet thanks I'm gonna try to implement it now it sounds great! Quote Link to comment https://forums.phpfreaks.com/topic/54281-password-over-a-secure-connection/#findComment-270005 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.