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 ServerFinalMessage
ClientFinalProcessor. receiveServerFinalMessage(@NotNull java.lang.String serverFinalMessage)
Receive and process the server-final-message.ServerFinalMessage
ScramClient. serverFinalMessage(java.lang.String serverFinalMessage)
Process and verify theserver-final-message
, from its String representation.ServerFirstMessage
ScramClient. 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 ScramAttributes
ScramAttributes. byChar(char c)
Find a SCRAMAttribute by its character.static @NotNull ScramAttributeValue
ScramAttributeValue. parse(@NotNull java.lang.String value)
Parses a potential ScramAttributeValue String.static @NotNull ClientFirstMessage
ClientFirstMessage. parseFrom(@NotNull java.lang.String clientFirstMessage)
Construct aClientFirstMessage
instance from a message (String).static @NotNull ServerFinalMessage
ServerFinalMessage. parseFrom(@NotNull java.lang.String serverFinalMessage)
Parses a server-final-message from a String.static @NotNull ServerFirstMessage
ServerFirstMessage. parseFrom(@NotNull java.lang.String serverFirstMessage, @NotNull java.lang.String clientNonce)
Parses a server-first-message from a String.
-