Interface PBKDF2PasswordStorageSchemeCfg
-
- All Superinterfaces:
Configuration,PasswordStorageSchemeCfg
public interface PBKDF2PasswordStorageSchemeCfg extends PasswordStorageSchemeCfg
A server-side interface for querying PBKDF2 Password Storage Scheme settings.The PBKDF2 Password Storage Scheme provides a mechanism for encoding user passwords using the PBKDF2 message digest algorithm.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddPBKDF2ChangeListener(ConfigurationChangeListener<PBKDF2PasswordStorageSchemeCfg> listener)Register to be notified when this PBKDF2 Password Storage Scheme is changed.Class<? extends PBKDF2PasswordStorageSchemeCfg>configurationClass()Gets the configuration class associated with this PBKDF2 Password Storage Scheme.StringgetJavaClass()Gets the "java-class" property.intgetPBKDF2Iterations()Gets the "pbkdf2-iterations" property.voidremovePBKDF2ChangeListener(ConfigurationChangeListener<PBKDF2PasswordStorageSchemeCfg> listener)Deregister an existing PBKDF2 Password Storage Scheme configuration change listener.-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
Methods inherited from interface org.forgerock.opendj.server.config.server.PasswordStorageSchemeCfg
addChangeListener, isEnabled, removeChangeListener
-
-
-
-
Method Detail
-
configurationClass
Class<? extends PBKDF2PasswordStorageSchemeCfg> configurationClass()
Gets the configuration class associated with this PBKDF2 Password Storage Scheme.- Specified by:
configurationClassin interfaceConfiguration- Specified by:
configurationClassin interfacePasswordStorageSchemeCfg- Returns:
- Returns the configuration class associated with this PBKDF2 Password Storage Scheme.
-
addPBKDF2ChangeListener
void addPBKDF2ChangeListener(ConfigurationChangeListener<PBKDF2PasswordStorageSchemeCfg> listener)
Register to be notified when this PBKDF2 Password Storage Scheme is changed.- Parameters:
listener- The PBKDF2 Password Storage Scheme configuration change listener.
-
removePBKDF2ChangeListener
void removePBKDF2ChangeListener(ConfigurationChangeListener<PBKDF2PasswordStorageSchemeCfg> listener)
Deregister an existing PBKDF2 Password Storage Scheme configuration change listener.- Parameters:
listener- The PBKDF2 Password Storage Scheme configuration change listener.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the PBKDF2 Password Storage Scheme implementation.
- Specified by:
getJavaClassin interfacePasswordStorageSchemeCfg- Returns:
- Returns the value of the "java-class" property.
-
getPBKDF2Iterations
int getPBKDF2Iterations()
Gets the "pbkdf2-iterations" property.The number of algorithm iterations to make. NIST recommends at least 1000.
- Returns:
- Returns the value of the "pbkdf2-iterations" property.
-
-