Uses of Class
com.ongres.scram.common.StringPreparation
-
Packages that use StringPreparation Package Description com.ongres.scram.client This module expose the client implementation of Salted Challenge Response Authentication Mechanism (SCRAM).com.ongres.scram.common This package expose the messages used to implement a client/server of Salted Challenge Response Authentication Mechanism (SCRAM). -
-
Uses of StringPreparation in com.ongres.scram.client
Fields in com.ongres.scram.client declared as StringPreparation Modifier and Type Field Description (package private) StringPreparation
ScramClient.Builder. stringPreparation
private StringPreparation
ScramClient. stringPreparation
private StringPreparation
ServerFirstProcessor. stringPreparation
Methods in com.ongres.scram.client with parameters of type StringPreparation Modifier and Type Method Description ScramClient.FinalBuildStage
ScramClient.Builder. stringPreparation(@NotNull StringPreparation stringPreparation)
ScramClient.FinalBuildStage
ScramClient.FinalBuildStage. stringPreparation(@NotNull StringPreparation stringPreparation)
Sets the StringPreparation, is recommended to leave the default SASL_PREPARATION.Constructors in com.ongres.scram.client with parameters of type StringPreparation Constructor Description ClientFinalProcessor(ScramMechanism scramMechanism, StringPreparation stringPreparation, char[] password, byte[] salt, ClientFirstMessage clientFirstMessage, ServerFirstMessage serverFirstMessage)
ServerFirstProcessor(ScramMechanism scramMechanism, StringPreparation stringPreparation, @NotNull java.lang.String receivedServerFirstMessage, @NotNull java.lang.String nonce, @NotNull ClientFirstMessage clientFirstMessage)
-
Uses of StringPreparation in com.ongres.scram.common
Methods in com.ongres.scram.common that return StringPreparation Modifier and Type Method Description static StringPreparation
StringPreparation. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StringPreparation[]
StringPreparation. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.ongres.scram.common with parameters of type StringPreparation Modifier and Type Method Description static byte @NotNull []
ScramFunctions. saltedPassword(@NotNull ScramMechanism scramMechanism, @NotNull StringPreparation stringPreparation, char @NotNull [] password, byte @NotNull [] salt, int iterationCount)
Compute the salted password, based on the given SCRAM mechanism, the String preparation algorithm, the provided salt and the number of iterations.(package private) byte @NotNull []
ScramMechanism. saltedPassword(@NotNull StringPreparation stringPreparation, char @NotNull [] password, byte @NotNull [] salt, int iterationCount)
Compute the salted password.
-