Uses of Class
org.forgerock.opendj.security.ScramCredential
-
Packages that use ScramCredential Package Description org.forgerock.opendj.security An LDAP based security provider having the name "OpenDJ" and exposing an LDAP/LDIF basedKeyStore
service.org.opends.server.core Contains various classes that comprise the core of the Directory Server codebase. -
-
Uses of ScramCredential in org.forgerock.opendj.security
Methods in org.forgerock.opendj.security that return ScramCredential Modifier and Type Method Description ScramCredential
ScramMechanism. newScramCredential(ByteString password)
Generates a new SCRAM credential suitable for storage in the server, using an iteration count of 10000.ScramCredential
ScramMechanism. newScramCredential(ByteString password, int iterations)
Generates a new SCRAM credential suitable for storage in the server.static ScramCredential
ScramCredential. valueOf(String rfc5803String)
Parses the provided RFC 5803 representation of a SCRAM credential as aScramCredential
.Methods in org.forgerock.opendj.security with parameters of type ScramCredential Modifier and Type Method Description boolean
ScramMechanism. passwordMatches(ScramCredential scramCredential, ByteString password)
Returnstrue
if the password matches the stored SCRAM credentials.void
ScramCredentialCallback. setScramCredential(ScramCredential scramCredential)
Sets the SCRAM credential associated with the authenticating user. -
Uses of ScramCredential in org.opends.server.core
Methods in org.opends.server.core that return types with arguments of type ScramCredential Modifier and Type Method Description List<ScramCredential>
PasswordPolicyState. getScramCredentials(String scramMechanism)
Retrieves a list of the SCRAM credentials for the user, or an empty list if the user does not have any.
-