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
Methods in com.ongres.scram.client that return ScramClient.FinalBuildStageModifier and TypeMethodDescriptionSets the authzid.ScramClient.FinalBuildStage.channelBinding(@Nullable String cbindType, byte @Nullable [] cbindData) If the client supports channel binding negotiation, this method sets the type and data used for channel binding.ScramClient.PasswordBuildStage.clientAndServerKey(byte @NotNull [] clientKey, byte @NotNull [] serverKey) Sets the ClientKey/ServerKey.ScramClient.FinalBuildStage.nonceLength(int length) Sets a non-default length for the nonce generation.ScramClient.FinalBuildStage.nonceSupplier(@NotNull Supplier<@NotNull String> nonceSupplier) The client will use a default nonce generator, unless an external one is provided by this method.ScramClient.PasswordBuildStage.password(char @NotNull [] password) Sets the password.ScramClient.PasswordBuildStage.saltedPassword(byte @NotNull [] saltedPassword) Sets the SaltedPassword.ScramClient.FinalBuildStage.secureRandomAlgorithmProvider(@NotNull String algorithm, @Nullable String provider) Selects a non-default SecureRandom instance, based on the given algorithm and optionally provider.ScramClient.FinalBuildStage.stringPreparation(@NotNull StringPreparation stringPreparation) Sets the StringPreparation, is recommended to leave the default SASL_PREPARATION.