Uses of Class
com.ongres.scram.common.Gs2Header
Packages that use Gs2Header
Package
Description
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 Gs2HeaderModifier and TypeFieldDescriptionprivate final @NotNull Gs2Header
ClientFirstMessage.gs2Header
gs2-header = gs2-cbind-flag "," [ authzid ] ",".Methods in com.ongres.scram.common that return Gs2HeaderModifier and TypeMethodDescription@NotNull Gs2Header
ClientFirstMessage.getGs2Header()
Return the Gs2Header.static @NotNull Gs2Header
Read a Gs2Header from a String.Methods in com.ongres.scram.common with parameters of type Gs2HeaderModifier and TypeMethodDescriptionprivate static void
ClientFinalMessage.checkChannelBinding
(Gs2Header gs2Header, byte[] cbindData) private static @NotNull String
ClientFinalMessage.generateCBindInput
(@NotNull Gs2Header gs2Header, byte @Nullable [] cbindData) (package private) static StringBuilder
ClientFinalMessage.withoutProof
(StringBuilder sb, Gs2Header gs2Header, byte[] cbindData, String nonce) Constructors in com.ongres.scram.common with parameters of type Gs2HeaderModifierConstructorDescriptionClientFinalMessage
(Gs2Header gs2Header, byte[] cbindData, 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 String username, @NotNull String clientNonce) Constructs a client-first-message for the given user, nonce and gs2Header.