Package io.quarkus.kafka.streams.runtime
Interface SslConfig
public interface SslConfig
-
Method Summary
Modifier and TypeMethodDescriptionA list of cipher suitesThe list of protocols enabled for SSL connectionsThe endpoint identification algorithm to validate server hostname using server certificatekey()Key configThe algorithm used by key manager factory for SSL connectionskeystore()Keystore configprotocol()The SSL protocol used to generate the SSLContextprovider()The name of the security provider used for SSL connectionsThe SecureRandom PRNG implementation to use for SSL cryptography operationsThe algorithm used by trust manager factory for SSL connectionsTruststore config
-
Method Details
-
protocol
The SSL protocol used to generate the SSLContext -
provider
The name of the security provider used for SSL connections -
cipherSuites
A list of cipher suites -
enabledProtocols
The list of protocols enabled for SSL connections -
truststore
TrustStoreConfig truststore()Truststore config -
keystore
KeyStoreConfig keystore()Keystore config -
key
KeyConfig key()Key config -
keymanagerAlgorithm
The algorithm used by key manager factory for SSL connections -
trustmanagerAlgorithm
The algorithm used by trust manager factory for SSL connections -
endpointIdentificationAlgorithm
The endpoint identification algorithm to validate server hostname using server certificate -
secureRandomImplementation
The SecureRandom PRNG implementation to use for SSL cryptography operations
-