Uses of Interface
com.ongres.scram.client.ScramClient.FinalBuildStage
Packages that use ScramClient.FinalBuildStage
Package
Description
This module expose the client implementation of Salted Challenge Response
Authentication Mechanism (SCRAM).
-
Uses of ScramClient.FinalBuildStage in com.ongres.scram.client
Classes in com.ongres.scram.client that implement ScramClient.FinalBuildStageModifier and TypeClassDescription(package private) static final class
Builds instances of typeScramClient
.Methods in com.ongres.scram.client that return ScramClient.FinalBuildStageModifier and TypeMethodDescriptionSets the authzid.ScramClient.Builder.channelBinding
(String cbindType, byte[] cbindData) ScramClient.FinalBuildStage.channelBinding
(String cbindType, byte[] cbindData) If the client supports channel binding negotiation, this method sets the type and data used for channel binding.ScramClient.Builder.clientAndServerKey
(byte[] clientKey, byte[] serverKey) ScramClient.PasswordBuildStage.clientAndServerKey
(byte[] clientKey, byte[] serverKey) Sets the ClientKey/ServerKey.ScramClient.Builder.nonceLength
(int length) ScramClient.FinalBuildStage.nonceLength
(int length) Sets a non-default length for the nonce generation.ScramClient.Builder.nonceSupplier
(Supplier<String> nonceSupplier) ScramClient.FinalBuildStage.nonceSupplier
(Supplier<String> nonceSupplier) The client will use a default nonce generator, unless an external one is provided by this method.ScramClient.Builder.password
(char[] password) ScramClient.PasswordBuildStage.password
(char[] password) Sets the password.ScramClient.Builder.saltedPassword
(byte[] saltedPassword) ScramClient.PasswordBuildStage.saltedPassword
(byte[] saltedPassword) Sets the SaltedPassword.ScramClient.Builder.secureRandomAlgorithmProvider
(String algorithm, String provider) ScramClient.FinalBuildStage.secureRandomAlgorithmProvider
(String algorithm, String provider) Selects a non-default SecureRandom instance, based on the given algorithm and optionally provider.ScramClient.Builder.stringPreparation
(StringPreparation stringPreparation) ScramClient.FinalBuildStage.stringPreparation
(StringPreparation stringPreparation) Sets the StringPreparation, is recommended to leave the default SASL_PREPARATION.