Uses of Class
com.ongres.scram.common.exception.ScramParseException
-
Packages that use ScramParseException 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 ScramParseException in com.ongres.scram.client
Methods in com.ongres.scram.client that throw ScramParseException Modifier and Type Method Description (package private) @NotNull ServerFinalMessageClientFinalProcessor. receiveServerFinalMessage(@NotNull java.lang.String serverFinalMessage)Receive and process the server-final-message.ServerFinalMessageScramClient. serverFinalMessage(java.lang.String serverFinalMessage)Process and verify theserver-final-message, from its String representation.ServerFirstMessageScramClient. serverFirstMessage(java.lang.String serverFirstMessage)Process theserver-first-message, from its String representation.Constructors in com.ongres.scram.client that throw ScramParseException Constructor Description ServerFirstProcessor(ScramMechanism scramMechanism, StringPreparation stringPreparation, @NotNull java.lang.String receivedServerFirstMessage, @NotNull java.lang.String nonce, @NotNull ClientFirstMessage clientFirstMessage) -
Uses of ScramParseException in com.ongres.scram.common
Methods in com.ongres.scram.common that throw ScramParseException Modifier and Type Method Description static ScramAttributesScramAttributes. byChar(char c)Find a SCRAMAttribute by its character.static @NotNull ScramAttributeValueScramAttributeValue. parse(@NotNull java.lang.String value)Parses a potential ScramAttributeValue String.static @NotNull ClientFirstMessageClientFirstMessage. parseFrom(@NotNull java.lang.String clientFirstMessage)Construct aClientFirstMessageinstance from a message (String).static @NotNull ServerFinalMessageServerFinalMessage. parseFrom(@NotNull java.lang.String serverFinalMessage)Parses a server-final-message from a String.static @NotNull ServerFirstMessageServerFirstMessage. parseFrom(@NotNull java.lang.String serverFirstMessage, @NotNull java.lang.String clientNonce)Parses a server-first-message from a String.
-