Uses of Class
org.apache.http.ssl.SSLContextBuilder

Packages that use SSLContextBuilder
org.apache.http.ssl Utility classes for trust and key material management and TLS/SSL context initialization. 
 

Uses of SSLContextBuilder in org.apache.http.ssl
 

Methods in org.apache.http.ssl that return SSLContextBuilder
static SSLContextBuilder SSLContextBuilder.create()
           
static SSLContextBuilder SSLContexts.custom()
          Creates custom SSL context.
 SSLContextBuilder SSLContextBuilder.loadKeyMaterial(File file, char[] storePassword, char[] keyPassword)
           
 SSLContextBuilder SSLContextBuilder.loadKeyMaterial(File file, char[] storePassword, char[] keyPassword, PrivateKeyStrategy aliasStrategy)
           
 SSLContextBuilder SSLContextBuilder.loadKeyMaterial(KeyStore keystore, char[] keyPassword)
           
 SSLContextBuilder SSLContextBuilder.loadKeyMaterial(KeyStore keystore, char[] keyPassword, PrivateKeyStrategy aliasStrategy)
           
 SSLContextBuilder SSLContextBuilder.loadKeyMaterial(URL url, char[] storePassword, char[] keyPassword)
           
 SSLContextBuilder SSLContextBuilder.loadKeyMaterial(URL url, char[] storePassword, char[] keyPassword, PrivateKeyStrategy aliasStrategy)
           
 SSLContextBuilder SSLContextBuilder.loadTrustMaterial(File file)
           
 SSLContextBuilder SSLContextBuilder.loadTrustMaterial(File file, char[] storePassword)
           
 SSLContextBuilder SSLContextBuilder.loadTrustMaterial(File file, char[] storePassword, TrustStrategy trustStrategy)
           
 SSLContextBuilder SSLContextBuilder.loadTrustMaterial(KeyStore truststore, TrustStrategy trustStrategy)
           
 SSLContextBuilder SSLContextBuilder.loadTrustMaterial(TrustStrategy trustStrategy)
           
 SSLContextBuilder SSLContextBuilder.loadTrustMaterial(URL url, char[] storePassword)
           
 SSLContextBuilder SSLContextBuilder.loadTrustMaterial(URL url, char[] storePassword, TrustStrategy trustStrategy)
           
 SSLContextBuilder SSLContextBuilder.setKeyManagerFactoryAlgorithm(String keyManagerFactoryAlgorithm)
          Sets the key manager factory algorithm name.
 SSLContextBuilder SSLContextBuilder.setKeyStoreType(String keyStoreType)
          Sets the key store type.
 SSLContextBuilder SSLContextBuilder.setProtocol(String protocol)
          Sets the SSLContext protocol algorithm name.
 SSLContextBuilder SSLContextBuilder.setProvider(Provider provider)
           
 SSLContextBuilder SSLContextBuilder.setProvider(String name)
           
 SSLContextBuilder SSLContextBuilder.setSecureRandom(SecureRandom secureRandom)
           
 SSLContextBuilder SSLContextBuilder.setTrustManagerFactoryAlgorithm(String trustManagerFactoryAlgorithm)
          Sets the trust manager factory algorithm name.
 SSLContextBuilder SSLContextBuilder.useProtocol(String protocol)
          Deprecated. Use setProtocol(String).
 



Copyright © 2005–2021 The Apache Software Foundation. All rights reserved.