1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 package org.apache.hc.client5.http.examples;
28
29 import java.security.cert.X509Certificate;
30
31 import javax.net.ssl.SSLContext;
32 import javax.net.ssl.SSLSession;
33
34 import org.apache.hc.client5.http.classic.methods.HttpGet;
35 import org.apache.hc.client5.http.config.TlsConfig;
36 import org.apache.hc.client5.http.impl.classic.CloseableHttpClient;
37 import org.apache.hc.client5.http.impl.classic.HttpClients;
38 import org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManagerBuilder;
39 import org.apache.hc.client5.http.io.HttpClientConnectionManager;
40 import org.apache.hc.client5.http.protocol.HttpClientContext;
41 import org.apache.hc.client5.http.ssl.DefaultClientTlsStrategy;
42 import org.apache.hc.client5.http.ssl.TlsSocketStrategy;
43 import org.apache.hc.core5.http.io.entity.EntityUtils;
44 import org.apache.hc.core5.http.message.StatusLine;
45 import org.apache.hc.core5.http.ssl.TLS;
46 import org.apache.hc.core5.ssl.SSLContexts;
47 import org.apache.hc.core5.util.Timeout;
48
49
50
51
52
53 public class ClientCustomSSL {
54
55 public final static void main(final String[] args) throws Exception {
56
57 final SSLContext sslContext = SSLContexts.custom()
58
59
60
61 .loadTrustMaterial((chain, authType) -> {
62
63
64
65
66 final X509Certificate cert = chain[0];
67 return "CN=httpbin.org".equalsIgnoreCase(cert.getSubjectDN().getName());
68 })
69 .build();
70 final TlsSocketStrategy tlsStrategy = new DefaultClientTlsStrategy(sslContext);
71
72 final HttpClientConnectionManager cm = PoolingHttpClientConnectionManagerBuilder.create()
73 .setTlsSocketStrategy(tlsStrategy)
74 .setDefaultTlsConfig(TlsConfig.custom()
75 .setHandshakeTimeout(Timeout.ofSeconds(30))
76 .setSupportedProtocols(TLS.V_1_3)
77 .build())
78 .build();
79 try (CloseableHttpClient httpclient = HttpClients.custom()
80 .setConnectionManager(cm)
81 .build()) {
82
83 final HttpGet httpget = new HttpGet("https://httpbin.org/");
84
85 System.out.println("Executing request " + httpget.getMethod() + " " + httpget.getUri());
86
87 final HttpClientContext clientContext = HttpClientContext.create();
88 httpclient.execute(httpget, clientContext, response -> {
89 System.out.println("----------------------------------------");
90 System.out.println(httpget + "->" + new StatusLine(response));
91 EntityUtils.consume(response.getEntity());
92 final SSLSession sslSession = clientContext.getSSLSession();
93 if (sslSession != null) {
94 System.out.println("SSL protocol " + sslSession.getProtocol());
95 System.out.println("SSL cipher suite " + sslSession.getCipherSuite());
96 }
97 return null;
98 });
99 }
100 }
101
102 }