Package org.keycloak.credential.hash
Class Pbkdf2PasswordHashProviderFactory
- java.lang.Object
-
- org.keycloak.credential.hash.AbstractPbkdf2PasswordHashProviderFactory
-
- org.keycloak.credential.hash.Pbkdf2PasswordHashProviderFactory
-
- All Implemented Interfaces:
PasswordHashProviderFactory
,ProviderFactory<PasswordHashProvider>
public class Pbkdf2PasswordHashProviderFactory extends AbstractPbkdf2PasswordHashProviderFactory implements PasswordHashProviderFactory
- Author:
- Kunal Kerkar
-
-
Field Summary
Fields Modifier and Type Field Description static int
DEFAULT_ITERATIONS
static String
ID
static String
PBKDF2_ALGORITHM
-
Fields inherited from class org.keycloak.credential.hash.AbstractPbkdf2PasswordHashProviderFactory
MAX_PADDING_LENGTH_PROPERTY
-
-
Constructor Summary
Constructors Constructor Description Pbkdf2PasswordHashProviderFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PasswordHashProvider
create(KeycloakSession session)
String
getId()
-
Methods inherited from class org.keycloak.credential.hash.AbstractPbkdf2PasswordHashProviderFactory
close, getMaxPaddingLength, init, postInit, setMaxPaddingLength
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.keycloak.provider.ProviderFactory
close, getConfigMetadata, init, order, postInit
-
-
-
-
Field Detail
-
ID
public static final String ID
- See Also:
- Constant Field Values
-
PBKDF2_ALGORITHM
public static final String PBKDF2_ALGORITHM
- See Also:
- Constant Field Values
-
DEFAULT_ITERATIONS
public static final int DEFAULT_ITERATIONS
- See Also:
- Constant Field Values
-
-
Method Detail
-
create
public PasswordHashProvider create(KeycloakSession session)
- Specified by:
create
in interfaceProviderFactory<PasswordHashProvider>
-
getId
public String getId()
- Specified by:
getId
in interfaceProviderFactory<PasswordHashProvider>
-
-