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

com.hexagonkt.http.SslSettings.kt Maven / Gradle / Ivy

Go to download

HTTP classes. These classes are shared among the HTTP client and the HTTP server.

The newest version!
package com.hexagonkt.http

import java.net.URL

data class SslSettings(
    val keyStore: URL? = null,
    val keyStorePassword: String = "",
    val trustStore: URL? = null,
    val trustStorePassword: String = "",
    val clientAuth: Boolean = false
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy