| | |
| | | import java.util.Arrays; |
| | | import java.util.concurrent.locks.ReentrantLock; |
| | | |
| | | import org.opends.server.admin.std.server.PasswordStorageSchemeCfg; |
| | | import org.opends.server.api.PasswordStorageScheme; |
| | | import org.opends.server.config.ConfigEntry; |
| | | import org.opends.server.config.ConfigException; |
| | | import org.opends.server.core.DirectoryServer; |
| | | import org.opends.server.types.ByteString; |
| | |
| | | * vulnerable to dictionary attacks than salted variants. |
| | | */ |
| | | public class SHA1PasswordStorageScheme |
| | | extends PasswordStorageScheme |
| | | extends PasswordStorageScheme <PasswordStorageSchemeCfg> |
| | | { |
| | | /** |
| | | * The fully-qualified name of this class. |
| | |
| | | * {@inheritDoc} |
| | | */ |
| | | @Override() |
| | | public void initializePasswordStorageScheme(ConfigEntry configEntry) |
| | | throws ConfigException, InitializationException |
| | | public void initializePasswordStorageScheme( |
| | | PasswordStorageSchemeCfg configuration |
| | | ) |
| | | throws ConfigException, InitializationException |
| | | { |
| | | try |
| | | { |