Package org.apache.hc.core5.ssl
Interface TrustStrategy
-
public interface TrustStrategyA strategy to establish trustworthiness of certificates without consulting the trust manager configured in the actual SSL context. This interface can be used to override the standard JSSE certificate verification process.Security Warning
If a trust strategy considers a certificate chain to be trusted, then the default trust manager will not be consulted. Trust strategy implementations should therefore consider properly checking the complete certificate chain. Checking for example only the subject of a certificate does not protect against man-in-the-middle attacks. For self-signed certificates prefer specifying a keystore containing the certificate chain when calling theSSLContextBuilderloadTrustMaterialmethods instead of implementing a custom trust strategy.A trust strategy alone cannot be used for certificate pinning. When
isTrustedreturnsfalsethe certificate check falls back to the trust manager which might consider the certificate trusted. See theisTrusted(X509Certificate[], String)documentation.- Since:
- 4.4
- See Also:
SSLContextBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType)Determines whether the certificate chain can be trusted without consulting the trust manager configured in the actual SSL context.
-
-
-
Method Detail
-
isTrusted
boolean isTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType) throws java.security.cert.CertificateExceptionDetermines whether the certificate chain can be trusted without consulting the trust manager configured in the actual SSL context. This method can be used to override the standard JSSE certificate verification process.Please note that, if this method returns
false, the trust manager configured in the actual SSL context can still clear the certificate as trusted.- Parameters:
chain- the peer certificate chainauthType- the authentication type based on the client certificate- Returns:
trueif the certificate can be trusted without verification by the trust manager,falseotherwise.- Throws:
java.security.cert.CertificateException- thrown if the certificate is not trusted or invalid.
-
-