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-fips Show documentation
Show all versions of bctls-fips Show documentation
The Bouncy Castle Java APIs for the TLS, including a JSSE provider. The APIs are designed primarily to be used in conjunction with the BC FIPS provider. The APIs may also be used with other providers although if being used in a FIPS context it is the responsibility of the user to ensure that any other providers used are FIPS certified and used appropriately.
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[] x509Certificates, String authType)
throws CertificateException
{
x509TrustManager.checkClientTrusted(x509Certificates, authType);
}
public void checkServerTrusted(X509Certificate[] x509Certificates, String authType)
throws CertificateException
{
x509TrustManager.checkServerTrusted(x509Certificates, authType);
}
public X509Certificate[] getAcceptedIssuers()
{
return x509TrustManager.getAcceptedIssuers();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy