All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.message.AuthenticationGSSContinue.scala Maven / Gradle / Ivy

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 scodec.Decoder
import scodec.codecs.bytes

/**
 * Specifies that this message contains GSSAPI or SSPI data.
 * @param data GSSAPI or SSPI authentication data.
 */
final case class AuthenticationGSSContinue(data: Array[Byte]) extends AuthenticationRequest

object AuthenticationGSSContinue {
  final val Tagʹ = 8
  val decoderʹ: Decoder[AuthenticationGSSContinue] = bytes.map(bv => AuthenticationGSSContinue(bv.toArray))
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy