Spring / Spring Security
What is salting in spring security?
Salting secure your application from Dictionary-Attack. Using Salt you may add an extra string in password so hacker find it difficult for braking the password.
There are 2 salt methods,
- Global Salt.
- Per User Salt.
In Global Salt there is one single common word append to password. In Per User Salt we have to give one user attribute serve as Salt String.
More Related questions...