I know that this has been brought up in the past, but, which of the encryption methods built into MySQL is better?
ENCRYPT ('$Pass') I've had problems checking those later.
PASSWORD ('$Pass') This seems to be the logical choice.
MD5 ('$Pass') Does this offer better protection?
Also, could I do something like ENCRYPT (PASSWORD (MD5 ('$Pass) ) ) to get security from all three at once?
I currently use PASSWORD ('$Pass') to save, and check if there's a row where the password field matches PASSWORD ('$Pass')
I could do that with MD5, right? Would it be better to do that with MD5? Or is PASSWORD the right choice?
KITTfan2K