Example usage for org.apache.http.conn.ssl X509HostnameVerifier interface-usage

List of usage examples for org.apache.http.conn.ssl X509HostnameVerifier interface-usage

Introduction

In this page you can find the example usage for org.apache.http.conn.ssl X509HostnameVerifier interface-usage.

Usage

From source file ie.aib.nbp.aibssl.AibHostVerifier.java

/**
 *
 * @author 58128
 */
public class AibHostVerifier implements X509HostnameVerifier {

From source file org.eclipse.skalli.core.destination.AllowAllHostnamesVerifier.java

class AllowAllHostnamesVerifier implements X509HostnameVerifier {

    private static final Logger LOG = LoggerFactory.getLogger(AllowAllHostnamesVerifier.class);

    @Override
    public boolean verify(String host, SSLSession session) {

From source file org.zywx.wbpalmstar.platform.certificates.HX509HostnameVerifier.java

public class HX509HostnameVerifier implements X509HostnameVerifier {

    @Override
    public boolean verify(String host, SSLSession session) {

        return true;

From source file org.apache.reef.runtime.hdinsight.client.sslhacks.UnsafeHostNameVerifier.java

final class UnsafeHostNameVerifier implements X509HostnameVerifier {

    @Override
    public void verify(final String host, final SSLSocket ssl) throws IOException {

    }

From source file org.eclipse.aether.transport.http.X509HostnameVerifierAdapter.java

/**
 * Makes a standard hostname verifier compatible with Apache HttpClient's API.
 */
final class X509HostnameVerifierAdapter implements X509HostnameVerifier {

    private final HostnameVerifier verifier;

From source file org.elasticsearch.test.rest.client.StrictHostnameVerifier.java

/**
 * A custom {@link X509HostnameVerifier} implementation that wraps calls to the {@link org.apache.http.conn.ssl.StrictHostnameVerifier} and
 * properly handles IPv6 addresses that come from a URL in the form <code>http://[::1]:9200/</code> by removing the surrounding brackets.
 *
 * This is a variation of the fix for <a href="https://issues.apache.org/jira/browse/HTTPCLIENT-1698">HTTPCLIENT-1698</a>, which is not
 * released yet as of Apache HttpClient 4.5.1

From source file ua.pp.msk.cliqr.CliQrHostnameVerifier.java

/**
 *
 * @author Maksym Shkolnyi aka maskimko
 */
public class CliQrHostnameVerifier implements X509HostnameVerifier, HostnameVerifier {

From source file ua.pp.msk.gradle.http.NexusHostnameVerifier.java

/**
 *
 * @author Maksym Shkolnyi 
 */
public class NexusHostnameVerifier implements X509HostnameVerifier, HostnameVerifier {
    private final Logger logger = LoggerFactory.getLogger(NexusHostnameVerifier.class);

From source file eu.europa.ec.markt.dss.validation.https.OptimistX509HostnameVerifier.java

/**
 * 
 * A X509HostnameVerifier for allow all hostnames.
 * 
 * <p>
 * DISCLAIMER: Project owner DG-MARKT.

From source file eu.europa.ec.markt.dss.validation102853.https.OptimistX509HostnameVerifier.java

/**
 * 
 * A X509HostnameVerifier for allow all hostnames.
 * 
 * <p>
 * DISCLAIMER: Project owner DG-MARKT.