Uses of Class
org.forgerock.opendj.security.ScramMechanism
Package
Description
Classes and interfaces for core LDAP requests/responses.
This package contains
Filter
to authenticate and authorize LDAP connections.An LDAP based security provider having the name "OpenDJ" and exposing an LDAP/LDIF based
KeyStore
service.-
Uses of ScramMechanism in org.forgerock.opendj.ldap.messages
Modifier and TypeMethodDescriptionstatic 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
Modifier and TypeMethodDescriptionstatic 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
Modifier and TypeMethodDescriptionstatic 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.