I have read about salted hash password technique to protect password from some attacks. https://www.owasp.org/index.php/Hashing_Java#Why_add_salt_.3F
But I have some confusing, should I send a salt value (for all use try to login) and then use Javascript calculates hash with that salt?
I think it's helpful to improve security. But I'm not sure, I'm not see anyone use this way.
Thanks in advance.