Spring Security Framework

Uses of Interface
org.springframework.security.providers.encoding.PasswordEncoder

Packages that use PasswordEncoder
org.springframework.security.providers.dao An authentication provider that relies upon a data access object. 
org.springframework.security.providers.encoding Password encoding implementations. 
org.springframework.security.providers.ldap.authenticator LDAP authenticator implementations. 
 

Uses of PasswordEncoder in org.springframework.security.providers.dao
 

Methods in org.springframework.security.providers.dao that return PasswordEncoder
protected  PasswordEncoder DaoAuthenticationProvider.getPasswordEncoder()
           
 

Methods in org.springframework.security.providers.dao with parameters of type PasswordEncoder
 void DaoAuthenticationProvider.setPasswordEncoder(PasswordEncoder passwordEncoder)
          Sets the PasswordEncoder instance to be used to encode and validate passwords.
 

Uses of PasswordEncoder in org.springframework.security.providers.encoding
 

Classes in org.springframework.security.providers.encoding that implement PasswordEncoder
 class BaseDigestPasswordEncoder
          Convenience base for digest password encoders.
 class BasePasswordEncoder
          Convenience base for all password encoders.
 class Md4PasswordEncoder
          MD4 implementation of PasswordEncoder.
 class Md5PasswordEncoder
          MD5 implementation of PasswordEncoder.
 class MessageDigestPasswordEncoder
          Base for digest password encoders.
 class PlaintextPasswordEncoder
          Plaintext implementation of PasswordEncoder.
 class ShaPasswordEncoder
          SHA implementation of PasswordEncoder.
 

Uses of PasswordEncoder in org.springframework.security.providers.ldap.authenticator
 

Classes in org.springframework.security.providers.ldap.authenticator that implement PasswordEncoder
 class LdapShaPasswordEncoder
          A version of ShaPasswordEncoder which supports Ldap SHA and SSHA (salted-SHA) encodings.
 

Methods in org.springframework.security.providers.ldap.authenticator with parameters of type PasswordEncoder
 void PasswordComparisonAuthenticator.setPasswordEncoder(PasswordEncoder passwordEncoder)
           
 


Spring Security Framework

Copyright © 2004-2010 SpringSource, Inc. All Rights Reserved.