Example usage for javax.net.ssl X509TrustManager interface-usage

List of usage examples for javax.net.ssl X509TrustManager interface-usage

Introduction

In this page you can find the example usage for javax.net.ssl X509TrustManager interface-usage.

Usage

From source file com.bnrc.http.AuthSSLX509TrustManager.java

/***
 * <p>
 * AuthSSLX509TrustManager can be used to extend the default
 * {@link X509TrustManager} with additional trust decisions.
 * </p>
 * 

From source file gov.nist.toolkit.soap.axis2.AuthSSLX509TrustManager.java

/**
 * <p>
 * AuthSSLX509TrustManager can be used to extend the default
 * {@link X509TrustManager} with additional trust decisions.
 * </p>
 * 

From source file com.fatwire.dta.sscrawler.EasyX509TrustManager.java

/**
 * <p>
 * EasyX509TrustManager unlike default {@link X509TrustManager} accepts
 * self-signed certificates.
 * </p>
 * <p>

From source file org.midonet.api.auth.vsphere.FingerprintTrustManager.java

/**
 * An {@code X509TrustManager} that trust the server certificates based on
 * a configured fingerprint.
 * The security of this method depends on the security of the cryptographic
 * hash chosen, in this case SHA-1: stronger then MD5, keep the configuration
 * simple and although not the strongest (some weaknesses have been proved

From source file org.devproof.portal.core.module.common.util.httpclient.ssl.EasyX509TrustManager.java

/**
 * <p>
 * EasyX509TrustManager unlike default {@link X509TrustManager} accepts
 * self-signed certificates.
 * </p>
 * <p>

From source file com.alibaba.antx.config.resource.http.EasyX509TrustManager.java

/**
 * <p>
 * EasyX509TrustManager unlike default {@link X509TrustManager} accepts
 * self-signed certificates.
 * </p>
 * <p>

From source file test.unit.be.fedict.eid.idp.protocol.openid.OpenIDTrustManager.java

public class OpenIDTrustManager implements X509TrustManager {

    private static final Log LOG = LogFactory.getLog(OpenIDTrustManager.class);

    private final X509Certificate serverCertificate;

From source file com.archivas.clienttools.arcutils.utils.net.EasyX509TrustManager.java

/**
 * <p>
 * EasyX509TrustManager unlike default {@link X509TrustManager} accepts self-signed certificates.
 * </p>
 * <p>
 * This trust manager SHOULD NOT be used for productive systems due to security reasons, unless it

From source file be.fgov.kszbcss.rhq.websphere.connector.security.DelegatingTrustManager.java

public class DelegatingTrustManager implements X509TrustManager {
    private static final Log log = LogFactory.getLog(DelegatingTrustManager.class);

    public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException {
        throw new UnsupportedOperationException();
    }

From source file com.alphabetbloc.accessmrs.utilities.MyTrustManager.java

/**
 * 
 * @author Nikolay Nelenkov (? https://github.com/nelenkov/custom-cert-https I think... though license is different author?
 * "loosely based on org.apache.http.conn.ssl.SSLSocketFactory")
 * @author Louis Fazen
 */