Package org.keycloak.credential.hash
Interface PasswordHashProvider
- All Superinterfaces:
Provider
- All Known Implementing Classes:
Pbkdf2PasswordHashProvider
- Author:
- Kunal Kerkar
-
Method Summary
Modifier and TypeMethodDescriptiondefault String
Deprecated.default void
encode
(String rawPassword, int iterations, CredentialModel credential) Deprecated.Exists due the backwards compatibility.encodedCredential
(String rawPassword, int iterations) default boolean
policyCheck
(PasswordPolicy policy, CredentialModel credential) Deprecated.Exists due the backwards compatibility.boolean
policyCheck
(PasswordPolicy policy, PasswordCredentialModel credential) default boolean
verify
(String rawPassword, CredentialModel credential) Deprecated.Exists due the backwards compatibility.boolean
verify
(String rawPassword, PasswordCredentialModel credential)
-
Method Details
-
policyCheck
-
encodedCredential
-
encode
Deprecated.Exists due the backwards compatibility. It is recommended to useencodedCredential(String, int)
-
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)
-