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

org.bouncycastle.jsse.provider.ProvTlsManager Maven / Gradle / Ivy

package org.bouncycastle.jsse.provider;

import java.security.cert.X509Certificate;

interface ProvTlsManager
{
    ProvSSLContextSpi getContext();

    ProvSSLParameters getProvSSLParameters();

    ContextData getContextData();

    String getPeerHost();

    boolean isClientTrusted(X509Certificate[] chain, String authType);

    boolean isServerTrusted(X509Certificate[] chain, String authType);

    void notifyHandshakeComplete(ProvSSLConnection connection); 
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy