Package com.attivio.transport.http.ssl
Class EasyX509TrustManager
- java.lang.Object
-
- com.attivio.transport.http.ssl.EasyX509TrustManager
-
- All Implemented Interfaces:
javax.net.ssl.TrustManager
,javax.net.ssl.X509TrustManager
public class EasyX509TrustManager extends java.lang.Object implements javax.net.ssl.X509TrustManager
EasyX509TrustManager unlike defaultX509TrustManager
accepts self-signed certificates.This trust manager SHOULD NOT be used for productive systems due to security reasons, unless it is a concious decision and you are perfectly aware of security implications of accepting self-signed certificates
- Author:
- Adrian Sutton, Oleg Kalnichevski
DISCLAIMER: HttpClient developers DO NOT actively support this component. The component is provided as a reference material, which may be inappropriate for use without additional customization.
-
-
Constructor Summary
Constructors Constructor Description EasyX509TrustManager(java.security.KeyStore keystore)
Constructor for EasyX509TrustManager.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
checkClientTrusted(java.security.cert.X509Certificate[] certificates, java.lang.String authType)
void
checkServerTrusted(java.security.cert.X509Certificate[] certificates, java.lang.String authType)
java.security.cert.X509Certificate[]
getAcceptedIssuers()
-
-
-
Method Detail
-
checkClientTrusted
public void checkClientTrusted(java.security.cert.X509Certificate[] certificates, java.lang.String authType) throws java.security.cert.CertificateException
- Specified by:
checkClientTrusted
in interfacejavax.net.ssl.X509TrustManager
- Throws:
java.security.cert.CertificateException
- See Also:
X509TrustManager.checkClientTrusted(X509Certificate[],String authType)
-
checkServerTrusted
public void checkServerTrusted(java.security.cert.X509Certificate[] certificates, java.lang.String authType) throws java.security.cert.CertificateException
- Specified by:
checkServerTrusted
in interfacejavax.net.ssl.X509TrustManager
- Throws:
java.security.cert.CertificateException
- See Also:
X509TrustManager.checkServerTrusted(X509Certificate[],String authType)
-
getAcceptedIssuers
public java.security.cert.X509Certificate[] getAcceptedIssuers()
- Specified by:
getAcceptedIssuers
in interfacejavax.net.ssl.X509TrustManager
- See Also:
X509TrustManager.getAcceptedIssuers()
-
-