Answer the question
In order to leave comments, you need to log in
How to speed up password lookup in MySQL database?
I have a table with more than 100.000.000 data. And there are indexes. So if you search by index, then the search is fast, it finds it in just ~ 0.5 seconds, but what if you search for unknown data? In my case, this is a password check with a specific hash (sha256). For example here is my query
SELECT * FROM `table` WHERE SHA2(CONCAT(`password`, 'sail'), 256) IN ('113b504a25551317e26fa6e5551d9aa5ad60097c1c58c4210e2aa6898676307d');
SELECT IF (
'113b504a25551317e26fa6e5551d9aa5ad60097c1c58c4210e2aa6898676307d' =
SHA2(`password`+"sail",256), '1', '0') AS "TEST"
FROM table;
Answer the question
In order to leave comments, you need to log in
The database should not have the password in plaintext - only the hash. Otherwise, an attacker who has received a database dump will be able to log in on behalf of any user.
And the hash should not be SHA, but specially designed for passwords.
And yes, Dr. Bacon is right: the user is selected from the database by login, and the password is checked not by the database, but by the server code.
Why search by password? It is necessary to search by login and this entry has to check the password.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question