net.message.AuthenticationGSS.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of skunk-core_2.12 Show documentation
Show all versions of skunk-core_2.12 Show documentation
Tagless, non-blocking data access library for Postgres.
The newest version!
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT
package skunk.net.message
import cats.syntax.all._
import scodec.interop.cats._
import scodec.Decoder
/** Specifies that GSSAPI authentication is required. */
case object AuthenticationGSS extends AuthenticationRequest {
final val Tagʹ = 7
val decoderʹ: Decoder[AuthenticationGSS.type] = AuthenticationGSS.pure[Decoder]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy