| Package | Description | 
|---|---|
| org.apache.hc.core5.ssl | Utility classes for trust and key material management
 and TLS/SSL context initialization. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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 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. | 
Copyright © 2005–2022 The Apache Software Foundation. All rights reserved.