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

com.twitter.zk.AuthInfo.scala Maven / Gradle / Ivy

There is a newer version: 6.38.0
Show newest version
package com.twitter.zk

case class AuthInfo(mode: String, data: Array[Byte])

object AuthInfo {
  def digest(user: String, secret: String) = {
    val authString = "%s:%s".format(user, secret).getBytes("UTF-8")//DigestAuthenticationProvider.generateDigest("%s:%s".format(user, secret)).getBytes("UTF-8")
    AuthInfo("digest", authString)
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy