Interface SslSettings
-
- All Implemented Interfaces:
public interface SslSettingsThe Secure Sockets Layer (SSL) settings.
-
-
Method Summary
Modifier and Type Method Description abstract voidsetKeyStore(@NonNull() KeyStore keyStore)Sets the KeyStore. -
-
Method Detail
-
setKeyStore
abstract void setKeyStore(@NonNull() KeyStore keyStore)
Sets the KeyStore.
This is not supported when useHttpEngine
is set to `true`.- Adds a key store which contains custom certificate authorities (CAs).
- The custom key store will be checked in case the default key store does not trust the server.
- Parameters:
keyStore- The key store containing custom CAs.
-
-
-
-