Enable case insensitive password

  • Thread starter Thread starter pv_kannan
  • Start date Start date
True, that would work for new user signups.

The problem is that there are over a thousand users already signed up
for our service.

I converted it to lower case and it generates a completly different
result.
 
(e-mail address removed) wrote in @z14g2000cwz.googlegroups.com:
True, that would work for new user signups.

The problem is that there are over a thousand users already signed up
for our service.

Hashes are case sensitive, so to create a case insensitve hash, you'll need
to reset all the passwords : (
 
I see only one partial solution then
Get 2 hashes one from lower case one from upper case and check both of them.

You will be in a trouble if guy used both Capital and lower case letters.

George.




True, that would work for new user signups.

The problem is that there are over a thousand users already signed up
for our service.

I converted it to lower case and it generates a completly different
result.
 
Check the lower case version, if it fails, check the case as typed, if it
passes, save the lower case hash result in the database. Next login for this
user is case insensitive.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top