All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.akosbordas.ncore.authentication.AcceptAllTrustManager Maven / Gradle / Ivy

Go to download

NcoreClient is a Java client for https://ncore.cc torrent site. This library makes it easy to automate your torrent downloads, searches from any Java program based on your needs.

There is a newer version: 1.0.0-RC3
Show newest version
package com.github.akosbordas.ncore.authentication;

import javax.net.ssl.X509TrustManager;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;

public class AcceptAllTrustManager implements X509TrustManager {

    @Override
    public void checkClientTrusted(X509Certificate[] arg0, String arg1) throws CertificateException {
    }

    @Override
    public void checkServerTrusted(X509Certificate[] arg0, String arg1) throws CertificateException {
    }

    @Override
    public X509Certificate[] getAcceptedIssuers() {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy