public class BCryptPasswordEncoder extends java.lang.Object implements PasswordEncoder
Constructor and Description |
---|
BCryptPasswordEncoder() |
BCryptPasswordEncoder(int strength) |
BCryptPasswordEncoder(int strength,
java.security.SecureRandom random) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
encode(java.lang.CharSequence rawPassword)
Encode the raw password.
|
boolean |
matches(java.lang.CharSequence rawPassword,
java.lang.String encodedPassword)
Verify the encoded password obtained from storage matches the submitted raw
password after it too is encoded.
|
public BCryptPasswordEncoder()
public BCryptPasswordEncoder(int strength)
strength
- the log rounds to use, between 4 and 31public BCryptPasswordEncoder(int strength, java.security.SecureRandom random)
strength
- the log rounds to use, between 4 and 31random
- the secure random instance to usepublic java.lang.String encode(java.lang.CharSequence rawPassword)
PasswordEncoder
encode
in interface PasswordEncoder
public boolean matches(java.lang.CharSequence rawPassword, java.lang.String encodedPassword)
PasswordEncoder
matches
in interface PasswordEncoder
rawPassword
- the raw password to encode and matchencodedPassword
- the encoded password from storage to compare with