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

com.mle.android.http.HttpUtil.scala Maven / Gradle / Ivy

The newest version!
package com.mle.android.http

import org.java_websocket.util.Base64

/**
 *
 * @author mle
 */
object HttpUtil {
  def authorizationValue(username: String, password: String) =
    "Basic " + Base64.encodeBytes((username + ":" + password).getBytes("UTF-8"))
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy