Class PasswordComparisonAuthenticator
java.lang.Object
org.springframework.security.ldap.authentication.AbstractLdapAuthenticator
org.springframework.security.ldap.authentication.PasswordComparisonAuthenticator
- All Implemented Interfaces:
org.springframework.beans.factory.Aware,org.springframework.beans.factory.InitializingBean,org.springframework.context.MessageSourceAware,LdapAuthenticator
An
LdapAuthenticator which compares the login password with the value stored in the
directory using a remote LDAP "compare" operation.
If passwords are stored in digest form in the repository, then a suitable
PasswordEncoder implementation must be supplied. By default, passwords are
encoded using the LdapShaPasswordEncoder. Note that compare operations will not
work if salted-SHA (SSHA) passwords are used, as it is not possible to know the salt
value which is a random byte sequence generated by the directory.
-
Field Summary
Fields inherited from class org.springframework.security.ldap.authentication.AbstractLdapAuthenticator
messages -
Constructor Summary
ConstructorsConstructorDescriptionPasswordComparisonAuthenticator(org.springframework.ldap.core.support.BaseLdapPathContextSource contextSource) -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.ldap.core.DirContextOperationsauthenticate(Authentication authentication) Authenticates as a user and obtains additional user information from the directory.voidsetPasswordAttributeName(String passwordAttribute) voidsetPasswordEncoder(PasswordEncoder passwordEncoder) voidsetUsePasswordAttrCompare(boolean usePasswordAttrCompare) Methods inherited from class org.springframework.security.ldap.authentication.AbstractLdapAuthenticator
afterPropertiesSet, getContextSource, getUserAttributes, getUserDns, getUserSearch, setMessageSource, setUserAttributes, setUserDnPatterns, setUserSearch
-
Constructor Details
-
PasswordComparisonAuthenticator
public PasswordComparisonAuthenticator(org.springframework.ldap.core.support.BaseLdapPathContextSource contextSource)
-
-
Method Details
-
authenticate
public org.springframework.ldap.core.DirContextOperations authenticate(Authentication authentication) Description copied from interface:LdapAuthenticatorAuthenticates as a user and obtains additional user information from the directory.- Parameters:
authentication- the authentication request- Returns:
- the details of the successfully authenticated user.
-
setPasswordAttributeName
-
setUsePasswordAttrCompare
public void setUsePasswordAttrCompare(boolean usePasswordAttrCompare) -
setPasswordEncoder
-