SSL

SSL handling can be customized (or disabled) when creating a backend and is backend-specific.

Depending on the underlying backend’s client, you can customize SSL settings.

SSL Context

Common requirement for handling SSL is creating SSLContext. It’s required by several backends.

One way SSL

Example assumes that you have your client key store in .p12 format. If you have your credentials in .pem format covert them using:

openssl pkcs12 -export -inkey your_key.pem -in your_cert.pem -out your_cert.p12

Sample code might look like this:

import java.io.FileInputStream
import java.security.{KeyStore, SecureRandom}
import java.security.cert.X509Certificate
import javax.net.ssl._

val TrustAllCerts: X509TrustManager = new X509TrustManager() {
  def getAcceptedIssuers: Array[X509Certificate] = Array[X509Certificate]()
  override def checkServerTrusted(x509Certificates: Array[X509Certificate], s: String): Unit = ()
  override def checkClientTrusted(x509Certificates: Array[X509Certificate], s: String): Unit = ()
}

val ks: KeyStore = KeyStore.getInstance(KeyStore.getDefaultType)
ks.load(new FileInputStream("/path/to/your_cert.p12"), "password".toCharArray)

val kmf: KeyManagerFactory = KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm)
kmf.init(ks, "password".toCharArray)

val ssl: SSLContext = SSLContext.getInstance("TLS")
ssl.init(kmf.getKeyManagers, Array(TrustAllCerts), new SecureRandom)

Mutual SSL

In mutual SSL you are also validating server certificate so example assumes you have it in your trust store. It can be imported to trust store with:

keytool -import -alias server_alias -file server.cer -keystore server_trust

Next, based on one way SSL example, add TrustManagerFactory to your code:

ks.load(new FileInputStream("/path/to/server_trust"), "password".toCharArray)

val tmf: TrustManagerFactory = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm)  
tmf.init(ks)

val ssl: SSLContext = SSLContext.getInstance("TLS")
ssl.init(kmf.getKeyManagers, tmf.getTrustManagers, new SecureRandom)

Using HttpUrlConnection

Using SSLContext from first section define a function to customize connection.

import sttp.client3._
import java.net.HttpURLConnection
import javax.net.ssl.HttpsURLConnection

def useSSL(conn: HttpURLConnection): Unit =
  conn match {
    case https: HttpsURLConnection => https.setSSLSocketFactory(ssl.getSocketFactory)
    case _ => ()
  }

val backend = HttpURLConnectionBackend(customizeConnection = useSSL)

It is also possible to set default SSLContext using SSLContext.setDefault(ssl).

Using Akka-http

Using SSLContext from first section create a HttpsConnectionContext.

import akka.actor.ActorSystem
import akka.http.scaladsl.{ConnectionContext, HttpsConnectionContext}
import sttp.client3.akkahttp._

val actorSystem: ActorSystem = ActorSystem()
val https: HttpsConnectionContext = ConnectionContext.httpsClient(ssl)

val backend = AkkaHttpBackend.usingActorSystem(actorSystem, customHttpsContext = Some(https))

For more information refer to akka docs.

Using Async-http-client

Using kmf: KeyManagerFactory and tmf: TrustManagerFactory from first section create a AsyncHttpClientConfig.

Backends using AsyncHttpClient provides factory methods accepting custom config.

import io.netty.handler.ssl.SslContextBuilder
import org.asynchttpclient.{AsyncHttpClientConfig, DefaultAsyncHttpClientConfig}
import sttp.client3.asynchttpclient.future._

val sslContext = SslContextBuilder.forClient()
  .keyManager(kmf)
  .trustManager(tmf)
  .build()

val config: AsyncHttpClientConfig = new DefaultAsyncHttpClientConfig.Builder().setSslContext(sslContext).build()

val backend = AsyncHttpClientFutureBackend.usingConfig(config)

Using OkHttp

Using SSLContext from first section create a OkHttpClient.

Specifying X509TrustManager explicitly is required for OkHttp. You can instantiate one your self, or extract one from tmf: TrustManagerFactory from first section.

import okhttp3.OkHttpClient
import sttp.client3.okhttp.OkHttpFutureBackend
import javax.net.ssl.X509TrustManager

val yourTrustManager: X509TrustManager = ???

val client: OkHttpClient = new OkHttpClient.Builder()
  .sslSocketFactory(ssl.getSocketFactory, yourTrustManager)
  .build()

val backend = OkHttpFutureBackend.usingClient(client)

For more information refer to okhttp docs.

Using HttpClient

Backends using HttpClient provides factory methods accepting HttpClient. In this example we are using IO and HttpClientFs2Backend.

Using SSLContext from first section:

import cats.effect.IO
import cats.effect.kernel.Resource
import cats.effect.std.Dispatcher
import java.net.http.HttpClient
import sttp.capabilities.WebSockets
import sttp.capabilities.fs2.Fs2Streams
import sttp.client3.SttpBackend
import sttp.client3.httpclient.fs2.HttpClientFs2Backend

val httpClient: HttpClient = HttpClient.newBuilder().sslContext(ssl).build()
val backend: Resource[IO, SttpBackend[IO, Fs2Streams[IO] with WebSockets]] = Dispatcher[IO].map(HttpClientFs2Backend.usingClient[IO](httpClient, _))