SSLConfig
data class SSLConfig(val port: Int = 9091, val host: String = "0.0.0.0", val keyStore: KeyStore = defaultKeyStore, val keyStorePath: File? = null, val keyAlias: String = "mykey", val keyStorePassword: () -> CharArray = { "changeit".toCharArray() }, val privateKeyPassword: () -> CharArray = { "changeit".toCharArray() }, val trustStore: KeyStore? = null, val trustStorePath: File? = null, val enabledProtocols: List<String>? = null) : EngineSSLConnectorConfig(source)
Deprecated
Obsolete, this class will be deleted in a future release
Constructors
Link copied to clipboard
constructor(port: Int = 9091, host: String = "0.0.0.0", keyStore: KeyStore = defaultKeyStore, keyStorePath: File? = null, keyAlias: String = "mykey", keyStorePassword: () -> CharArray = { "changeit".toCharArray() }, privateKeyPassword: () -> CharArray = { "changeit".toCharArray() }, trustStore: KeyStore? = null, trustStorePath: File? = null, enabledProtocols: List<String>? = null)