Uses of Enum
com.ongres.scram.common.StringPreparation
Packages that use StringPreparation
Package
Description
This module expose the client implementation of Salted Challenge Response
Authentication Mechanism (SCRAM).
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 StringPreparationModifier and TypeFieldDescriptionprivate StringPreparation
ScramClient.Builder.stringPreparation
private final StringPreparation
ScramClient.stringPreparation
private final StringPreparation
ServerFirstProcessor.stringPreparation
Methods in com.ongres.scram.client with parameters of type StringPreparationModifier and TypeMethodDescriptionScramClient.Builder.stringPreparation
(StringPreparation stringPreparation) ScramClient.FinalBuildStage.stringPreparation
(StringPreparation stringPreparation) Sets the StringPreparation, is recommended to leave the default SASL_PREPARATION.Constructors in com.ongres.scram.client with parameters of type StringPreparationModifierConstructorDescription(package private)
ClientFinalProcessor
(ScramMechanism scramMechanism, StringPreparation stringPreparation, char[] password, byte[] salt, ClientFirstMessage clientFirstMessage, ServerFirstMessage serverFirstMessage) (package private)
ServerFirstProcessor
(ScramMechanism scramMechanism, StringPreparation stringPreparation, String receivedServerFirstMessage, String nonce, ClientFirstMessage clientFirstMessage) -
Uses of StringPreparation in com.ongres.scram.common
Methods in com.ongres.scram.common that return StringPreparationModifier and TypeMethodDescriptionstatic StringPreparation
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 StringPreparationModifier and TypeMethodDescriptionstatic byte[]
ScramFunctions.saltedPassword
(ScramMechanism scramMechanism, StringPreparation stringPreparation, char[] password, byte[] 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[]
ScramMechanism.saltedPassword
(StringPreparation stringPreparation, char[] password, byte[] salt, int iterationCount) Compute the salted password.