View Javadoc
1   /*
2    * ====================================================================
3    * Licensed to the Apache Software Foundation (ASF) under one
4    * or more contributor license agreements.  See the NOTICE file
5    * distributed with this work for additional information
6    * regarding copyright ownership.  The ASF licenses this file
7    * to you under the Apache License, Version 2.0 (the
8    * "License"); you may not use this file except in compliance
9    * with the License.  You may obtain a copy of the License at
10   *
11   *   http://www.apache.org/licenses/LICENSE-2.0
12   *
13   * Unless required by applicable law or agreed to in writing,
14   * software distributed under the License is distributed on an
15   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16   * KIND, either express or implied.  See the License for the
17   * specific language governing permissions and limitations
18   * under the License.
19   * ====================================================================
20   *
21   * This software consists of voluntary contributions made by many
22   * individuals on behalf of the Apache Software Foundation.  For more
23   * information on the Apache Software Foundation, please see
24   * <http://www.apache.org/>.
25   *
26   */
27  package org.apache.hc.client5.http.examples;
28  
29  import java.security.cert.CertificateException;
30  import java.security.cert.X509Certificate;
31  
32  import javax.net.ssl.SSLContext;
33  import javax.net.ssl.SSLSession;
34  
35  import org.apache.hc.client5.http.classic.methods.HttpGet;
36  import org.apache.hc.client5.http.impl.classic.CloseableHttpClient;
37  import org.apache.hc.client5.http.impl.classic.CloseableHttpResponse;
38  import org.apache.hc.client5.http.impl.classic.HttpClients;
39  import org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManagerBuilder;
40  import org.apache.hc.client5.http.io.HttpClientConnectionManager;
41  import org.apache.hc.client5.http.protocol.HttpClientContext;
42  import org.apache.hc.client5.http.ssl.SSLConnectionSocketFactory;
43  import org.apache.hc.client5.http.ssl.SSLConnectionSocketFactoryBuilder;
44  import org.apache.hc.core5.http.io.entity.EntityUtils;
45  import org.apache.hc.core5.http.ssl.TLS;
46  import org.apache.hc.core5.ssl.SSLContexts;
47  import org.apache.hc.core5.ssl.TrustStrategy;
48  
49  /**
50   * This example demonstrates how to create secure connections with a custom SSL
51   * context.
52   */
53  public class ClientCustomSSL {
54  
55      public final static void main(final String[] args) throws Exception {
56          // Trust standard CA and those trusted by our custom strategy
57          final SSLContext sslcontext = SSLContexts.custom()
58                  .loadTrustMaterial(new TrustStrategy() {
59  
60                      @Override
61                      public boolean isTrusted(
62                              final X509Certificate[] chain,
63                              final String authType) throws CertificateException {
64                          final X509Certificate cert = chain[0];
65                          return "CN=httpbin.org".equalsIgnoreCase(cert.getSubjectDN().getName());
66                      }
67  
68                  })
69                  .build();
70          // Allow TLSv1.2 protocol only
71          final SSLConnectionSocketFactory sslSocketFactory = SSLConnectionSocketFactoryBuilder.create()
72                  .setSslContext(sslcontext)
73                  .setTlsVersions(TLS.V_1_2)
74                  .build();
75          final HttpClientConnectionManager cm = PoolingHttpClientConnectionManagerBuilder.create()
76                  .setSSLSocketFactory(sslSocketFactory)
77                  .build();
78          try (CloseableHttpClient httpclient = HttpClients.custom()
79                  .setConnectionManager(cm)
80                  .build()) {
81  
82              final HttpGet httpget = new HttpGet("https://httpbin.org/");
83  
84              System.out.println("Executing request " + httpget.getMethod() + " " + httpget.getUri());
85  
86              final HttpClientContext clientContext = HttpClientContext.create();
87              try (CloseableHttpResponse response = httpclient.execute(httpget, clientContext)) {
88                  System.out.println("----------------------------------------");
89                  System.out.println(response.getCode() + " " + response.getReasonPhrase());
90                  System.out.println(EntityUtils.toString(response.getEntity()));
91  
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              }
98          }
99      }
100 
101 }