Package | Description |
---|---|
org.apache.http.conn.ssl |
TLS/SSL specific API.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractVerifier
Abstract base class for all standard
X509HostnameVerifier
implementations. |
class |
AllowAllHostnameVerifier
The ALLOW_ALL HostnameVerifier essentially turns hostname verification
off.
|
class |
BrowserCompatHostnameVerifier
The HostnameVerifier that works the same way as Curl and Firefox.
|
class |
StrictHostnameVerifier
The Strict HostnameVerifier works the same way as Sun Java 1.4, Sun
Java 5, Sun Java 6-rc.
|
Modifier and Type | Field and Description |
---|---|
static X509HostnameVerifier |
SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER |
static X509HostnameVerifier |
SSLSocketFactory.BROWSER_COMPATIBLE_HOSTNAME_VERIFIER |
static X509HostnameVerifier |
SSLSocketFactory.STRICT_HOSTNAME_VERIFIER |
Modifier and Type | Method and Description |
---|---|
X509HostnameVerifier |
SSLSocketFactory.getHostnameVerifier() |
Modifier and Type | Method and Description |
---|---|
void |
SSLSocketFactory.setHostnameVerifier(X509HostnameVerifier hostnameVerifier)
Deprecated.
|
Constructor and Description |
---|
SSLSocketFactory(SSLContext sslContext,
X509HostnameVerifier hostnameVerifier) |
SSLSocketFactory(SSLSocketFactory socketfactory,
X509HostnameVerifier hostnameVerifier) |
SSLSocketFactory(String algorithm,
KeyStore keystore,
String keystorePassword,
KeyStore truststore,
SecureRandom random,
TrustStrategy trustStrategy,
X509HostnameVerifier hostnameVerifier) |
SSLSocketFactory(String algorithm,
KeyStore keystore,
String keystorePassword,
KeyStore truststore,
SecureRandom random,
X509HostnameVerifier hostnameVerifier) |
SSLSocketFactory(TrustStrategy trustStrategy,
X509HostnameVerifier hostnameVerifier) |
Copyright © 1999–2014 The Apache Software Foundation. All rights reserved.