List of usage examples for javax.net.ssl X509TrustManager interface-usage
From source file hr.fer.zemris.vhdllab.platform.remoting.EasyX509TrustManager.java
/**
* <p>
* EasyX509TrustManager unlike default {@link X509TrustManager} accepts
* self-signed certificates.
* </p>
* <p>
From source file com.farmafene.commons.cas.HttpClientFactory.java
public class HttpClientFactory implements X509TrustManager, X509HostnameVerifier { private static final int HTTPS_DEFAULT_PORT = 443; private static final int HTTP_DEFAULT_PORT = 80; private static final Logger logger = LoggerFactory.getLogger(HttpClientFactory.class);
From source file com.thoughtworks.go.security.SelfSignedCertificateX509TrustManager.java
/** * */ public class SelfSignedCertificateX509TrustManager implements X509TrustManager { private static final Log LOG = LogFactory.getLog(SelfSignedCertificateX509TrustManager.class);
From source file it.drwolf.ridire.session.ssl.EasyX509TrustManager.java
/**
* <p>
* EasyX509TrustManager unlike default {@link X509TrustManager} accepts
* self-signed certificates.
* </p>
* <p>
From source file com.quarterfull.newsAndroid.ssl.MemorizingTrustManager.java
/**
* A X509 trust manager implementation which asks the user about invalid
* certificates and memorizes their decision.
* <p>
* The certificate validity is checked using the system default X509
* TrustManager, creating a query Dialog if the check fails.
From source file de.luhmer.owncloudnewsreader.ssl.MemorizingTrustManager.java
/**
* A X509 trust manager implementation which asks the user about invalid
* certificates and memorizes their decision.
* <p>
* The certificate validity is checked using the system default X509
* TrustManager, creating a query Dialog if the check fails.
From source file org.shelloid.common.ShelloidUtil.java
class ShelloidX509TrustManager implements X509TrustManager { ArrayList<X509Certificate> certs; public ShelloidX509TrustManager() { certs = new ArrayList<X509Certificate>();
From source file com.wunding.mlplayer.hudong.DummySSLSocketFactory.java
/** * Trust manager which accepts certificates without any validation * except date validation. */ class DummyTrustManager implements X509TrustManager { private static final X509Certificate[] _AcceptedIssuers = new X509Certificate[] {};
From source file info.guardianproject.onionkit.trust.StrongTrustManager.java
/**
* Updated multifaceted StrongTrustManager Based on TrustManager from Jive:
* Trust manager that checks all certificates presented by the server. This
* class is used during TLS negotiation. It is possible to disable/enable some
* or all checkings by configuring the {@link ConnectionConfiguration}. The
* truststore file that contains knows and trusted CA root certificates can also
From source file com.example.dailyphoto.oath.EasyHttpClient.java
class TrivialTrustManager implements X509TrustManager { public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException { } public void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException { }