Quote:
|
Originally Posted by Nico
You can create a personal salt for each user. You can use for example the first the characters of his username or email address.
Just play with it and be creative. 
|
This personal salt work for me, I do something like :
Now, user login as:
user
password
And work good. But exist a problem, if user login as;
User
password
the username is case-sensitive. And : "User" and "user" generate different MD5 salt. This is not a good idea.
Exist a way to solve this problem ? I don't need case-sensitive usernames, only case-sensitive passwords.
Thanks