Package org.opends.server.extensions
Class PBKDF2HmacSHA256PasswordStorageScheme
java.lang.Object
org.opends.server.api.PasswordStorageScheme<Pbkdf2PasswordStorageSchemeCfg>
org.opends.server.extensions.PBKDF2HmacSHA256PasswordStorageScheme
- All Implemented Interfaces:
ConfigurationChangeListener<Pbkdf2PasswordStorageSchemeCfg>
public final class PBKDF2HmacSHA256PasswordStorageScheme
extends PasswordStorageScheme<Pbkdf2PasswordStorageSchemeCfg>
This class defines a Directory Server password storage scheme based on the PBKDF2 algorithm defined in RFC 2898,
using HMAC-SHA256 pseudorandom function.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionapplyConfigurationChange(Pbkdf2PasswordStorageSchemeCfg configuration) Applies the configuration changes to this change listener.booleanauthPasswordMatches(ByteString plaintextPassword, String authInfo, String authValue) Indicates whether the provided plaintext password matches the encoded password using the authentication password syntax with the given authInfo and authValue components.encodeAuthPassword(ByteString plaintext) Encodes the provided plaintext password for this storage scheme using the authentication password syntax defined in RFC 3112.static StringencodeOffline(byte[] passwordBytes) Generates an encoded password string from the given clear-text password.encodePassword(ByteString plaintext) Encodes the provided plaintext password for this storage scheme, without the name of the associated scheme.voidPerforms any necessary finalization that might be required when this password storage scheme is no longer needed (e.g., the scheme is disabled or the server is shutting down).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.Retrieves the name of the password storage scheme provided by this handler.voidinitializePasswordStorageScheme(Pbkdf2PasswordStorageSchemeCfg config, ServerContext serverContext) Initializes this password storage scheme handler based on the information in the provided configuration entry.booleanisConfigurationChangeAcceptable(Pbkdf2PasswordStorageSchemeCfg configuration, List<LocalizableMessage> unacceptableReasons) Indicates whether the proposed change to the configuration is acceptable to this change listener.booleanisRehashNeeded(ByteString storedPassword) Indicates whether the encoded password needs to be rehashed because the password storage scheme configuration changed.booleanIndicates whether this password storage scheme should be considered "secure".booleanpasswordMatches(ByteString plaintextPassword, ByteString storedPassword) Indicates whether the provided plaintext password included in a bind request matches the given stored value.booleanIndicates whether this password storage scheme supports the ability to interact with values using the authentication password syntax defined in RFC 3112.Methods inherited from class org.opends.server.api.PasswordStorageScheme
destroySilently, encodePasswordWithScheme, getAuthPasswordPlaintextValue, getPlaintextValue, isConfigurationAcceptable, isReversible
-
Constructor Details
-
PBKDF2HmacSHA256PasswordStorageScheme
public PBKDF2HmacSHA256PasswordStorageScheme()
-
-
Method Details
-
getStorageSchemeName
Description copied from class:PasswordStorageSchemeRetrieves the name of the password storage scheme provided by this handler.- Returns:
- The name of the password storage scheme provided by this handler.
-
getAuthPasswordSchemeName
Description copied from class:PasswordStorageSchemeRetrieves 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 thegetStorageSchemeNamemethod.- 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.
-
encodeOffline
Generates an encoded password string from the given clear-text password. This method is primarily intended for use when it is necessary to generate a password with the server offline (e.g., when setting the initial root user password).- Parameters:
passwordBytes- The bytes that make up the clear-text password.- Returns:
- The encoded password string, including the scheme name in curly braces.
- Throws:
LdapException- If a problem occurs during processing.
-
initializePasswordStorageScheme
public void initializePasswordStorageScheme(Pbkdf2PasswordStorageSchemeCfg config, ServerContext serverContext) throws InitializationException Description copied from class:PasswordStorageSchemeInitializes 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:
initializePasswordStorageSchemein classPasswordStorageScheme<Pbkdf2PasswordStorageSchemeCfg>- Parameters:
config- 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.
-
encodePassword
Description copied from class:PasswordStorageSchemeEncodes the provided plaintext password for this storage scheme, without the name of the associated scheme. Note that the provided plaintext password should not be altered in any way.- Specified by:
encodePasswordin classPasswordStorageScheme<Pbkdf2PasswordStorageSchemeCfg>- Parameters:
plaintext- The plaintext version of the password.- Returns:
- The password that has been encoded using this storage scheme.
- Throws:
LdapException- If a problem occurs while processing.
-
passwordMatches
Description copied from class:PasswordStorageSchemeIndicates 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:
passwordMatchesin classPasswordStorageScheme<Pbkdf2PasswordStorageSchemeCfg>- 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:
trueif the provided plaintext password matches the provided stored password, orfalseif not.
-
supportsAuthPasswordSyntax
public boolean supportsAuthPasswordSyntax()Description copied from class:PasswordStorageSchemeIndicates whether this password storage scheme supports the ability to interact with values using the authentication password syntax defined in RFC 3112.- Overrides:
supportsAuthPasswordSyntaxin classPasswordStorageScheme<Pbkdf2PasswordStorageSchemeCfg>- Returns:
trueif this password storage scheme supports the ability to interact with values using the authentication password syntax, orfalseif it does not.
-
isConfigurationChangeAcceptable
public boolean isConfigurationChangeAcceptable(Pbkdf2PasswordStorageSchemeCfg configuration, List<LocalizableMessage> unacceptableReasons) Description copied from interface:ConfigurationChangeListenerIndicates whether the proposed change to the configuration is acceptable to this change listener.- Specified by:
isConfigurationChangeAcceptablein interfaceConfigurationChangeListener<Pbkdf2PasswordStorageSchemeCfg>- Parameters:
configuration- The new configuration containing the changes.unacceptableReasons- A list that can be used to hold messages about why the provided configuration is not acceptable.- Returns:
- Returns
trueif the proposed change is acceptable, orfalseif it is not.
-
applyConfigurationChange
Description copied from interface:ConfigurationChangeListenerApplies the configuration changes to this change listener.- Specified by:
applyConfigurationChangein interfaceConfigurationChangeListener<Pbkdf2PasswordStorageSchemeCfg>- Parameters:
configuration- The new configuration containing the changes.- Returns:
- Returns information about the result of changing the configuration.
-
finalizePasswordStorageScheme
public void finalizePasswordStorageScheme()Description copied from class:PasswordStorageSchemePerforms any necessary finalization that might be required when this password storage scheme is no longer needed (e.g., the scheme is disabled or the server is shutting down).- Overrides:
finalizePasswordStorageSchemein classPasswordStorageScheme<Pbkdf2PasswordStorageSchemeCfg>
-
encodeAuthPassword
Description copied from class:PasswordStorageSchemeEncodes 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:
encodeAuthPasswordin classPasswordStorageScheme<Pbkdf2PasswordStorageSchemeCfg>- 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
Description copied from class:PasswordStorageSchemeIndicates 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:
authPasswordMatchesin classPasswordStorageScheme<Pbkdf2PasswordStorageSchemeCfg>- 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:
trueif the provided plaintext password matches the encoded password according to the authentication password info syntax, orfalseif it does not or this storage scheme does not support the authentication password syntax.
-
isStorageSchemeSecure
public boolean isStorageSchemeSecure()Description copied from class:PasswordStorageSchemeIndicates 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:
isStorageSchemeSecurein classPasswordStorageScheme<Pbkdf2PasswordStorageSchemeCfg>- Returns:
falseif it may be trivial to discover the original plain-text password from the encoded form, ortrueif the scheme offers sufficient protection that revealing the encoded password will not easily reveal the corresponding plain-text value.
-
isRehashNeeded
Description copied from class:PasswordStorageSchemeIndicates whether the encoded password needs to be rehashed because the password storage scheme configuration changed. Only password storage schemes with specific configuration parameters, such as PBKDF2, need to override this method.- Overrides:
isRehashNeededin classPasswordStorageScheme<Pbkdf2PasswordStorageSchemeCfg>- Parameters:
storedPassword- An existing hashed password including the name of the storage scheme.- Returns:
- whether the stored password should be rehashed.
-