public interface PasswordEncoder
BCryptPasswordEncoder
.Modifier and Type | Method and Description |
---|---|
String |
encode(CharSequence rawPassword)
Encode the raw password.
|
boolean |
matches(CharSequence rawPassword,
String encodedPassword)
Verify the encoded password obtained from storage matches the submitted raw
password after it too is encoded.
|
String encode(CharSequence rawPassword)
boolean matches(CharSequence rawPassword, String encodedPassword)
rawPassword
- the raw password to encode and matchencodedPassword
- the encoded password from storage to compare with