static SSLContextBuilder |
SSLContextBuilder.create() |
|
static SSLContextBuilder |
SSLContexts.custom() |
Creates custom SSL context.
|
SSLContextBuilder |
SSLContextBuilder.loadKeyMaterial(java.io.File file,
char[] storePassword,
char[] keyPassword) |
|
SSLContextBuilder |
SSLContextBuilder.loadKeyMaterial(java.io.File file,
char[] storePassword,
char[] keyPassword,
PrivateKeyStrategy aliasStrategy) |
|
SSLContextBuilder |
SSLContextBuilder.loadKeyMaterial(java.net.URL url,
char[] storePassword,
char[] keyPassword) |
|
SSLContextBuilder |
SSLContextBuilder.loadKeyMaterial(java.net.URL url,
char[] storePassword,
char[] keyPassword,
PrivateKeyStrategy aliasStrategy) |
|
SSLContextBuilder |
SSLContextBuilder.loadKeyMaterial(java.nio.file.Path file,
char[] storePassword,
char[] keyPassword,
java.nio.file.OpenOption... openOptions) |
|
SSLContextBuilder |
SSLContextBuilder.loadKeyMaterial(java.nio.file.Path file,
char[] storePassword,
char[] keyPassword,
PrivateKeyStrategy aliasStrategy,
java.nio.file.OpenOption... openOptions) |
|
SSLContextBuilder |
SSLContextBuilder.loadKeyMaterial(java.security.KeyStore keyStore,
char[] keyPassword) |
|
SSLContextBuilder |
SSLContextBuilder.loadKeyMaterial(java.security.KeyStore keyStore,
char[] keyPassword,
PrivateKeyStrategy aliasStrategy) |
|
SSLContextBuilder |
SSLContextBuilder.loadTrustMaterial(java.io.File file) |
|
SSLContextBuilder |
SSLContextBuilder.loadTrustMaterial(java.io.File file,
char[] storePassword) |
|
SSLContextBuilder |
SSLContextBuilder.loadTrustMaterial(java.io.File file,
char[] storePassword,
TrustStrategy trustStrategy) |
|
SSLContextBuilder |
SSLContextBuilder.loadTrustMaterial(java.net.URL url,
char[] storePassword) |
|
SSLContextBuilder |
SSLContextBuilder.loadTrustMaterial(java.net.URL url,
char[] storePassword,
TrustStrategy trustStrategy) |
|
SSLContextBuilder |
SSLContextBuilder.loadTrustMaterial(java.nio.file.Path file) |
|
SSLContextBuilder |
SSLContextBuilder.loadTrustMaterial(java.nio.file.Path file,
char[] storePassword) |
|
SSLContextBuilder |
SSLContextBuilder.loadTrustMaterial(java.nio.file.Path file,
char[] storePassword,
TrustStrategy trustStrategy,
java.nio.file.OpenOption... openOptions) |
|
SSLContextBuilder |
SSLContextBuilder.loadTrustMaterial(java.security.KeyStore trustStore,
TrustStrategy trustStrategy) |
|
SSLContextBuilder |
SSLContextBuilder.loadTrustMaterial(TrustStrategy trustStrategy) |
|
SSLContextBuilder |
SSLContextBuilder.setKeyManagerFactoryAlgorithm(java.lang.String keyManagerFactoryAlgorithm) |
Sets the key manager factory algorithm name.
|
SSLContextBuilder |
SSLContextBuilder.setKeyStoreProvider(java.lang.String name) |
Sets the JCA provider name to use for creating key stores.
|
SSLContextBuilder |
SSLContextBuilder.setKeyStoreProvider(java.security.Provider provider) |
Sets the JCA provider to use for creating key stores.
|
SSLContextBuilder |
SSLContextBuilder.setKeyStoreType(java.lang.String keyStoreType) |
Sets the key store type.
|
SSLContextBuilder |
SSLContextBuilder.setProtocol(java.lang.String protocol) |
Sets the SSLContext algorithm name.
|
SSLContextBuilder |
SSLContextBuilder.setProvider(java.lang.String name) |
|
SSLContextBuilder |
SSLContextBuilder.setProvider(java.security.Provider provider) |
|
SSLContextBuilder |
SSLContextBuilder.setSecureRandom(java.security.SecureRandom secureRandom) |
|
SSLContextBuilder |
SSLContextBuilder.setTrustManagerFactoryAlgorithm(java.lang.String trustManagerFactoryAlgorithm) |
Sets the trust manager factory algorithm name.
|
SSLContextBuilder |
SSLContextBuilder.setTrustStoreProvider(java.lang.String name) |
Sets the JCA provider name to use for creating trust stores.
|
SSLContextBuilder |
SSLContextBuilder.setTrustStoreProvider(java.security.Provider provider) |
Sets the JCA provider to use for creating trust stores.
|