I want to make a php website with a login system.
Which hashing method should I use?
I used to hash my website's passwords with md5() but everyone said I should not use it.
Why not?
How can md5
get cracked?
I want to make a php website with a login system.
Which hashing method should I use?
I used to hash my website's passwords with md5() but everyone said I should not use it.
Why not?
How can md5
get cracked?
Please reference the php documentation on Password Hashing for why you should not use md5() and please reference the password_hash() documentation on what you should use.