Uses of Class
org.forgerock.opendj.security.ScramMechanism
-
Packages that use ScramMechanism Package Description org.forgerock.opendj.ldap.messages Classes and interfaces for core LDAP requests/responses.org.forgerock.opendj.rest2ldap.authz This package containsFilter
to authenticate and authorize LDAP connections.org.forgerock.opendj.security An LDAP based security provider having the name "OpenDJ" and exposing an LDAP/LDIF basedKeyStore
service. -
-
Uses of ScramMechanism in org.forgerock.opendj.ldap.messages
Methods in org.forgerock.opendj.ldap.messages with parameters of type ScramMechanism Modifier and Type Method Description static BindRequest
Requests. newScramSaslBindRequest(ScramMechanism scramMechanism, String authenticationId, char[] password, String authorizationId)
Creates a new SCRAM SASL bind request as defined in RFC 5802. -
Uses of ScramMechanism in org.forgerock.opendj.rest2ldap.authz
Methods in org.forgerock.opendj.rest2ldap.authz with parameters of type ScramMechanism Modifier and Type Method Description static AuthenticationStrategy
AuthenticationStrategies. newSaslScramStrategy(LdapClient ldapClient, ScramMechanism scramMechanism, Schema schema, String authcIdTemplate)
Creates anAuthenticationStrategy
performing authentication against an LDAP server using a SCRAM SASL bind request. -
Uses of ScramMechanism in org.forgerock.opendj.security
Methods in org.forgerock.opendj.security that return ScramMechanism Modifier and Type Method Description static ScramMechanism
ScramMechanism. getInstance(String algorithm)
Returns aScramMechanism
object that implements the specified SCRAM mechanism using a newSecureRandom
for generating salts and nonce values.static ScramMechanism
ScramMechanism. getInstance(String algorithm, int minIterations)
Returns aScramMechanism
object that implements the specified SCRAM mechanism using a newSecureRandom
for generating salts and nonce values.static ScramMechanism
ScramMechanism. getInstance(String algorithm, SecureRandom random)
Returns aScramMechanism
object that implements the specified SCRAM mechanism.static ScramMechanism
ScramMechanism. getInstance(String algorithm, SecureRandom random, int minIterations)
Returns aScramMechanism
object that implements the specified SCRAM mechanism.
-