Uses of Class
com.ongres.scram.common.Gs2Header
-
Packages that use Gs2Header Package Description com.ongres.scram.common This package expose the messages used to implement a client/server of Salted Challenge Response Authentication Mechanism (SCRAM). -
-
Uses of Gs2Header in com.ongres.scram.common
Fields in com.ongres.scram.common declared as Gs2Header Modifier and Type Field Description private @NotNull Gs2Header
ClientFirstMessage. gs2Header
gs2-header = gs2-cbind-flag "," [ authzid ] ",".Methods in com.ongres.scram.common that return Gs2Header Modifier and Type Method Description @NotNull Gs2Header
ClientFirstMessage. getGs2Header()
Return the Gs2Header.static @NotNull Gs2Header
Gs2Header. parseFrom(@NotNull java.lang.String message)
Read a Gs2Header from a String.Methods in com.ongres.scram.common with parameters of type Gs2Header Modifier and Type Method Description private static void
ClientFinalMessage. checkChannelBinding(Gs2Header gs2Header, byte[] cbindData)
private static @NotNull java.lang.String
ClientFinalMessage. generateCBindInput(@NotNull Gs2Header gs2Header, byte @Nullable [] cbindData)
(package private) static java.lang.StringBuilder
ClientFinalMessage. withoutProof(java.lang.StringBuilder sb, Gs2Header gs2Header, byte[] cbindData, java.lang.String nonce)
Constructors in com.ongres.scram.common with parameters of type Gs2Header Constructor Description ClientFinalMessage(Gs2Header gs2Header, byte[] cbindData, java.lang.String nonce, byte[] proof)
Constructus a client-final-message with the provided gs2Header (the same one used in the client-first-message), optionally the channel binding data, and the nonce.ClientFirstMessage(@NotNull Gs2Header gs2Header, @NotNull java.lang.String username, @NotNull java.lang.String clientNonce)
Constructs a client-first-message for the given user, nonce and gs2Header.
-