Package org.opends.server.extensions
Class CryptPasswordStorageScheme
- java.lang.Object
-
- org.opends.server.api.PasswordStorageScheme<CryptPasswordStorageSchemeCfg>
-
- org.opends.server.extensions.CryptPasswordStorageScheme
-
- All Implemented Interfaces:
ConfigurationChangeListener<CryptPasswordStorageSchemeCfg>
public final class CryptPasswordStorageScheme extends PasswordStorageScheme<CryptPasswordStorageSchemeCfg> implements ConfigurationChangeListener<CryptPasswordStorageSchemeCfg>
This class defines a Directory Server password storage scheme based on the UNIX Crypt algorithm. This is a legacy one-way digest algorithm intended only for situations where passwords have not yet been updated to modern hashes such as SHA-1 and friends. This implementation does perform weak salting, which means that it is more vulnerable to dictionary attacks than schemes with larger salts.
-
-
Constructor Summary
Constructors Constructor Description CryptPasswordStorageScheme()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConfigChangeResultapplyConfigurationChange(CryptPasswordStorageSchemeCfg configuration)Applies the configuration changes to this change listener.ByteStringencodePassword(ByteSequence plaintext)Encodes the provided plaintext password for this storage scheme, without the name of the associated scheme.StringgetStorageSchemeName()Retrieves the name of the password storage scheme provided by this handler.voidinitializePasswordStorageScheme(CryptPasswordStorageSchemeCfg configuration, ServerContext serverContext)Initializes this password storage scheme handler based on the information in the provided configuration entry.booleanisConfigurationAcceptable(CryptPasswordStorageSchemeCfg configuration, List<LocalizableMessage> unacceptableReasons)Indicates whether the provided configuration is acceptable for this password storage scheme.booleanisConfigurationChangeAcceptable(CryptPasswordStorageSchemeCfg configuration, List<LocalizableMessage> unacceptableReasons)Indicates whether the proposed change to the configuration is acceptable to this change listener.booleanisStorageSchemeSecure()Indicates whether this password storage scheme should be considered "secure".booleanpasswordMatches(ByteSequence plaintextPassword, ByteSequence storedPassword)Indicates whether the provided plaintext password included in a bind request matches the given stored value.-
Methods inherited from class org.opends.server.api.PasswordStorageScheme
authPasswordMatches, destroySilently, encodeAuthPassword, encodePasswordWithScheme, finalizePasswordStorageScheme, getAuthPasswordPlaintextValue, getAuthPasswordSchemeName, getPlaintextValue, isRehashNeeded, isReversible, supportsAuthPasswordSyntax
-
-
-
-
Method Detail
-
initializePasswordStorageScheme
public void initializePasswordStorageScheme(CryptPasswordStorageSchemeCfg configuration, ServerContext serverContext)
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<CryptPasswordStorageSchemeCfg>- Parameters:
configuration- The configuration entry that contains the information to use to initialize this password storage scheme handler.serverContext- The server context
-
getStorageSchemeName
public String getStorageSchemeName()
Description copied from class:PasswordStorageSchemeRetrieves the name of the password storage scheme provided by this handler.- Specified by:
getStorageSchemeNamein classPasswordStorageScheme<CryptPasswordStorageSchemeCfg>- Returns:
- The name of the password storage scheme provided by this handler.
-
encodePassword
public ByteString encodePassword(ByteSequence plaintext) throws LdapException
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<CryptPasswordStorageSchemeCfg>- 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
public boolean passwordMatches(ByteSequence plaintextPassword, ByteSequence storedPassword)
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<CryptPasswordStorageSchemeCfg>- 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.
-
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<CryptPasswordStorageSchemeCfg>- 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.
-
isConfigurationAcceptable
public boolean isConfigurationAcceptable(CryptPasswordStorageSchemeCfg configuration, List<LocalizableMessage> unacceptableReasons)
Description copied from class:PasswordStorageSchemeIndicates whether the provided configuration is acceptable for this password storage scheme. It should be possible to call this method on an uninitialized password storage scheme instance in order to determine whether the password storage scheme would be able to use the provided configuration.- Overrides:
isConfigurationAcceptablein classPasswordStorageScheme<CryptPasswordStorageSchemeCfg>- Parameters:
configuration- The password storage scheme configuration for which to make the determination.unacceptableReasons- A list that may be used to hold the reasons that the provided configuration is not acceptable.- Returns:
trueif the provided configuration is acceptable for this password storage scheme, orfalseif not.
-
isConfigurationChangeAcceptable
public boolean isConfigurationChangeAcceptable(CryptPasswordStorageSchemeCfg 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<CryptPasswordStorageSchemeCfg>- 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
public ConfigChangeResult applyConfigurationChange(CryptPasswordStorageSchemeCfg configuration)
Description copied from interface:ConfigurationChangeListenerApplies the configuration changes to this change listener.- Specified by:
applyConfigurationChangein interfaceConfigurationChangeListener<CryptPasswordStorageSchemeCfg>- Parameters:
configuration- The new configuration containing the changes.- Returns:
- Returns information about the result of changing the configuration.
-
-