ws.ament.hammock.web.tck.SSLBypass Maven / Gradle / Ivy
/*
* Copyright 2016 Hammock and its contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied.
*
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ws.ament.hammock.web.tck;
import javax.net.ssl.HttpsURLConnection;
import javax.net.ssl.SSLContext;
import javax.net.ssl.TrustManager;
import javax.net.ssl.X509TrustManager;
import java.security.GeneralSecurityException;
import java.security.SecureRandom;
import java.security.cert.X509Certificate;
final class SSLBypass {
private static final SecureRandom SECURE_RANDOM = new SecureRandom();
static void disableSSLChecks() {
HttpsURLConnection.setDefaultHostnameVerifier((s, sslSession) -> true);
try {
SSLContext context = SSLContext.getInstance("SSL");
context.init(null, new TrustManager[]{new X509TrustManager() {
@Override
public void checkClientTrusted(X509Certificate[] c, String s) {
}
@Override
public void checkServerTrusted(X509Certificate[] c, String s) {
}
@Override
public X509Certificate[] getAcceptedIssuers() {
return new X509Certificate[0];
}
}}, SECURE_RANDOM);
HttpsURLConnection.setDefaultSSLSocketFactory(context.getSocketFactory());
} catch (GeneralSecurityException gse) {
throw new RuntimeException(gse.getMessage());
}
}
}