org.bouncycastle.jsse.provider.ExportX509TrustManager_5 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bctls-jdk18on Show documentation
Show all versions of bctls-jdk18on Show documentation
The Bouncy Castle Java APIs for TLS and DTLS, including a provider for the JSSE.
The newest version!
package org.bouncycastle.jsse.provider;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import javax.net.ssl.X509TrustManager;
import org.bouncycastle.jsse.BCX509ExtendedTrustManager;
class ExportX509TrustManager_5
implements X509TrustManager, ExportX509TrustManager
{
final BCX509ExtendedTrustManager x509TrustManager;
ExportX509TrustManager_5(BCX509ExtendedTrustManager x509TrustManager)
{
this.x509TrustManager = x509TrustManager;
}
public BCX509ExtendedTrustManager unwrap()
{
return x509TrustManager;
}
public void checkClientTrusted(X509Certificate[] chain, String authType)
throws CertificateException
{
x509TrustManager.checkClientTrusted(chain, authType);
}
public void checkServerTrusted(X509Certificate[] chain, String authType)
throws CertificateException
{
x509TrustManager.checkServerTrusted(chain, authType);
}
public X509Certificate[] getAcceptedIssuers()
{
return x509TrustManager.getAcceptedIssuers();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy