Class LdapSshaPasswordEncoder

java.lang.Object
com.atlassian.crowd.password.encoder.LdapSshaPasswordEncoder
All Implemented Interfaces:
InternalPasswordEncoder, LdapPasswordEncoder, PasswordEncoder

public class LdapSshaPasswordEncoder extends Object implements LdapPasswordEncoder, InternalPasswordEncoder
This class uses the LdapShaPasswordEncoder to specifically add salt to the SSHA if it has not been provided.
  • Constructor Details

    • LdapSshaPasswordEncoder

      public LdapSshaPasswordEncoder()
  • Method Details

    • encodePassword

      public String encodePassword(String rawPass, Object salt)
      This method delegates to LdapShaPasswordEncoder.encode(CharSequence)
      Specified by:
      encodePassword in interface PasswordEncoder
      Parameters:
      rawPass - the password to encode
      salt - not used in this implementation
      Returns:
      String the encoded password
    • isPasswordValid

      public boolean isPasswordValid(String encPass, String rawPass, Object salt)
      Description copied from interface: PasswordEncoder

      Validates a specified "raw" password against an encoded password.

      The encoded password should have previously been generated by PasswordEncoder.encodePassword(String, Object). This method will encode the rawPass (using the optional salt), and then compared it with the presented encPass.

      For a discussion of salts, please refer to PasswordEncoder.encodePassword(String, Object).

      Specified by:
      isPasswordValid in interface PasswordEncoder
      Parameters:
      encPass - a pre-encoded password
      rawPass - a raw password to encode and compare against the pre-encoded password
      salt - optionally used by the implementation to "salt" the raw password before encoding. A null value is legal.
      Returns:
      true if the password is valid , false otherwise
    • getKey

      public String getKey()
      Description copied from interface: PasswordEncoder
      The key to define this password encoder
      Specified by:
      getKey in interface PasswordEncoder