Next Oct 17 Previous
Your secret is save with me
In the team meeting the design for a new password database is discussed. It is suggested to use md5()
for storing password data. What do you say?
A: OK, md5()
is fine for hasing passwords.
B: We can't use MD5 passwords hashes because they can easily be decoded.
C: As long as we don't use crypt()
, that function is system dependend.
D: We select a stronger hashing method using either crypt()
or hash()