java.lang.Object |
↳ |
org.springframework.security.authentication.encoding.BasePasswordEncoder |
Known Direct Subclasses
|
Known Indirect Subclasses
|
Class Overview
Convenience base for all password encoders.
Public Constructors
public
BasePasswordEncoder
()
Protected Methods
protected
String[]
demergePasswordAndSalt
(String mergedPasswordSalt)
Used by subclasses to extract the password and salt from a merged String
created using
mergePasswordAndSalt(String, Object, boolean)
.
The first element in the returned array is the
password. The second element is the salt. The salt array element will always be present, even if no salt was
found in the mergedPasswordSalt
argument.
Parameters
mergedPasswordSalt
| as generated by mergePasswordAndSalt |
Returns
- an array, in which the first element is the password and the second the salt
protected
String
mergePasswordAndSalt
(String password, Object salt, boolean strict)
Used by subclasses to generate a merged password and salt String
.
The generated password
will be in the form of password{salt}
.
A null
can be passed to either method, and will be handled correctly. If the
salt
is null
or empty, the resulting generated password will simply be the passed
password
. The toString
method of the salt
will be used to represent the
salt.
Parameters
password
| the password to be used (can be null ) |
salt
| the salt to be used (can be null ) |
strict
| ensures salt doesn't contain the delimiters |
Returns
- a merged password and salt
String