PragmaticWays / MyMentor.Codes

An online mentorship program for programmers
http://mymentor.codes
Apache License 2.0
1 stars 0 forks source link

Update password encryption #4

Closed PragmaticWays closed 8 years ago

PragmaticWays commented 8 years ago

Current encryption use md5 - this is an outdated encryption method that is no longer as secure as other methods.

Need to look into more up to date methods for encrypting passwords, including salting and hashing techniques.

PragmaticWays commented 8 years ago

Updated using password_hash() & password_verify()