Class SaltedMD5PasswordStorageScheme


  • public final class SaltedMD5PasswordStorageScheme
    extends PasswordStorageScheme<C>
    This class defines a Directory Server password storage scheme based on the MD5 algorithm defined in RFC 1321. This is a one-way digest algorithm so there is no way to retrieve the original clear-text version of the password from the hashed value (although this means that it is not suitable for things that need the clear-text password like DIGEST-MD5). The values that it generates are also salted, which protects against dictionary attacks. It does this by generating a 64-bit random salt which is appended to the clear-text value. A MD5 hash is then generated based on this, the salt is appended to the hash, and then the entire value is base64-encoded.
    • Constructor Detail

      • SaltedMD5PasswordStorageScheme

        public SaltedMD5PasswordStorageScheme()
    • Method Detail

      • getStorageSchemeName

        public String getStorageSchemeName()
        Description copied from class: PasswordStorageScheme
        Retrieves the name of the password storage scheme provided by this handler.
        Returns:
        The name of the password storage scheme provided by this handler.
      • getAuthPasswordSchemeName

        public String getAuthPasswordSchemeName()
        Description copied from class: PasswordStorageScheme
        Retrieves the scheme name that should be used with this password storage scheme when it is used in the context of the authentication password syntax. This default implementation will return the same value as the getStorageSchemeName method.
        Returns:
        The scheme name that should be used with this password storage scheme when it is used in the context of the authentication password syntax.
      • getMessageDigestAlgorithm

        protected String getMessageDigestAlgorithm()
        Returns the algorithm to use for computing digests.
        Returns:
        the algorithm to use for computing digests
      • getDigestSize

        protected int getDigestSize()
        Returns the number of bytes the digest algorithm produces.
        Returns:
        the number of bytes the digest algorithm produces
      • initializePasswordStorageScheme

        public void initializePasswordStorageScheme​(C configuration,
                                                    ServerContext serverContext)
                                             throws InitializationException
        Description copied from class: PasswordStorageScheme
        Initializes this password storage scheme handler based on the information in the provided configuration entry. It should also register itself with the Directory Server for the particular storage scheme that it will manage.
        Specified by:
        initializePasswordStorageScheme in class PasswordStorageScheme<C extends PasswordStorageSchemeCfg>
        Parameters:
        configuration - The configuration entry that contains the information to use to initialize this password storage scheme handler.
        serverContext - The server context
        Throws:
        InitializationException - If a problem occurs during initialization that is not related to the server configuration.
      • passwordMatches

        public boolean passwordMatches​(ByteSequence plaintextPassword,
                                       ByteSequence storedPassword)
        Description copied from class: PasswordStorageScheme
        Indicates whether the provided plaintext password included in a bind request matches the given stored value. The provided stored value should not include the scheme name in curly braces.
        Specified by:
        passwordMatches in class PasswordStorageScheme<C extends PasswordStorageSchemeCfg>
        Parameters:
        plaintextPassword - The plaintext password provided by the user as part of a simple bind attempt.
        storedPassword - The stored password to compare against the provided plaintext password.
        Returns:
        true if the provided plaintext password matches the provided stored password, or false if not.
      • supportsAuthPasswordSyntax

        public boolean supportsAuthPasswordSyntax()
        Description copied from class: PasswordStorageScheme
        Indicates whether this password storage scheme supports the ability to interact with values using the authentication password syntax defined in RFC 3112.
        Overrides:
        supportsAuthPasswordSyntax in class PasswordStorageScheme<C extends PasswordStorageSchemeCfg>
        Returns:
        true if this password storage scheme supports the ability to interact with values using the authentication password syntax, or false if it does not.
      • encodeAuthPassword

        public ByteString encodeAuthPassword​(ByteSequence plaintext)
                                      throws LdapException
        Description copied from class: PasswordStorageScheme
        Encodes the provided plaintext password for this storage scheme using the authentication password syntax defined in RFC 3112. Note that the provided plaintext password should not be altered in any way.
        Overrides:
        encodeAuthPassword in class PasswordStorageScheme<C extends PasswordStorageSchemeCfg>
        Parameters:
        plaintext - The plaintext version of the password.
        Returns:
        The password that has been encoded in the authentication password syntax.
        Throws:
        LdapException - If a problem occurs while processing of if this storage scheme does not support the authentication password syntax.
      • authPasswordMatches

        public boolean authPasswordMatches​(ByteSequence plaintextPassword,
                                           String authInfo,
                                           String authValue)
        Description copied from class: PasswordStorageScheme
        Indicates whether the provided plaintext password matches the encoded password using the authentication password syntax with the given authInfo and authValue components.

        This is the historical method signature used by clients' custom password storage scheme. Be careful to not modify it.

        Overrides:
        authPasswordMatches in class PasswordStorageScheme<C extends PasswordStorageSchemeCfg>
        Parameters:
        plaintextPassword - The plaintext password provided by the user.
        authInfo - The authInfo component of the password encoded in the authentication password syntax.
        authValue - The authValue component of the password encoded in the authentication password syntax.
        Returns:
        true if the provided plaintext password matches the encoded password according to the authentication password info syntax, or false if it does not or this storage scheme does not support the authentication password syntax.
      • isStorageSchemeSecure

        public boolean isStorageSchemeSecure()
        Description copied from class: PasswordStorageScheme
        Indicates whether this password storage scheme should be considered "secure". If the encoding used for this scheme does not obscure the value at all, or if it uses a method that is trivial to reverse (e.g., base64), then it should not be considered secure.

        This may be used to determine whether a password may be included in a set of search results, including the possibility of overriding access controls in the case that access controls would allow the password to be returned but the password is considered too insecure to reveal.
        Specified by:
        isStorageSchemeSecure in class PasswordStorageScheme<C extends PasswordStorageSchemeCfg>
        Returns:
        false if it may be trivial to discover the original plain-text password from the encoded form, or true if the scheme offers sufficient protection that revealing the encoded password will not easily reveal the corresponding plain-text value.