Uses of Interface
org.apache.http.conn.ssl.TrustStrategy
-
Packages that use TrustStrategy Package Description org.apache.http.conn.ssl Client TLS/SSL support. -
-
Uses of TrustStrategy in org.apache.http.conn.ssl
Classes in org.apache.http.conn.ssl that implement TrustStrategy Modifier and Type Class Description class
TrustAllStrategy
A trust strategy that accepts all certificates as trusted.class
TrustSelfSignedStrategy
A trust strategy that accepts self-signed certificates as trusted.Methods in org.apache.http.conn.ssl with parameters of type TrustStrategy Modifier and Type Method Description SSLContextBuilder
SSLContextBuilder. loadTrustMaterial(java.security.KeyStore truststore, TrustStrategy trustStrategy)
Deprecated.Constructors in org.apache.http.conn.ssl with parameters of type TrustStrategy Constructor Description SSLSocketFactory(java.lang.String algorithm, java.security.KeyStore keystore, java.lang.String keyPassword, java.security.KeyStore truststore, java.security.SecureRandom random, TrustStrategy trustStrategy, X509HostnameVerifier hostnameVerifier)
Deprecated.SSLSocketFactory(TrustStrategy trustStrategy)
Deprecated.SSLSocketFactory(TrustStrategy trustStrategy, X509HostnameVerifier hostnameVerifier)
Deprecated.
-