Package | Description |
---|---|
org.apache.http.conn.ssl |
Client TLS/SSL support.
|
org.apache.http.ssl |
Utility classes for trust and key material management
and TLS/SSL context initialization.
|
Modifier and Type | Interface and Description |
---|---|
interface |
TrustStrategy
A strategy to establish trustworthiness of certificates without consulting the trust manager
configured in the actual SSL context.
|
Modifier and Type | Class and Description |
---|---|
class |
TrustSelfSignedStrategy
A trust strategy that accepts self-signed certificates as trusted.
|
Modifier and Type | Method and Description |
---|---|
SSLContextBuilder |
SSLContextBuilder.loadTrustMaterial(java.io.File file,
char[] storePassword,
TrustStrategy trustStrategy) |
SSLContextBuilder |
SSLContextBuilder.loadTrustMaterial(java.security.KeyStore truststore,
TrustStrategy trustStrategy) |
SSLContextBuilder |
SSLContextBuilder.loadTrustMaterial(TrustStrategy trustStrategy) |
SSLContextBuilder |
SSLContextBuilder.loadTrustMaterial(java.net.URL url,
char[] storePassword,
TrustStrategy trustStrategy) |
Constructor and Description |
---|
SSLContextBuilder.TrustManagerDelegate(javax.net.ssl.X509TrustManager trustManager,
TrustStrategy trustStrategy) |