Package org.keycloak.credential.hash
Interface PasswordHashProvider
- All Superinterfaces:
Provider
- All Known Implementing Classes:
Pbkdf2PasswordHashProvider
- Author:
- Kunal Kerkar
-
Method Summary
Modifier and TypeMethodDescriptiondefault Stringdefault voidencode(String rawPassword, int iterations, CredentialModel credential) Deprecated.Exists due the backwards compatibility.encodedCredential(String rawPassword, int iterations) default booleanpolicyCheck(PasswordPolicy policy, CredentialModel credential) Deprecated.Exists due the backwards compatibility.booleanpolicyCheck(PasswordPolicy policy, PasswordCredentialModel credential) default booleanverify(String rawPassword, CredentialModel credential) Deprecated.Exists due the backwards compatibility.booleanverify(String rawPassword, PasswordCredentialModel credential)
-
Method Details
-
policyCheck
-
encodedCredential
-
encode
-
verify
-
policyCheck
Deprecated.Exists due the backwards compatibility. It is recommended to usepolicyCheck(PasswordPolicy, PasswordCredentialModel) -
encode
Deprecated.Exists due the backwards compatibility. It is recommended to useencodedCredential(String, int)} -
verify
Deprecated.Exists due the backwards compatibility. It is recommended to useverify(String, PasswordCredentialModel)
-