jdk/test/sun/security/tools/keytool/PrintSSL.java
changeset 904 eadc9fa4b700
child 5506 202f599c92aa
equal deleted inserted replaced
903:c324f61770cf 904:eadc9fa4b700
       
     1 /*
       
     2  * Copyright 2008 Sun Microsystems, Inc.  All Rights Reserved.
       
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4  *
       
     5  * This code is free software; you can redistribute it and/or modify it
       
     6  * under the terms of the GNU General Public License version 2 only, as
       
     7  * published by the Free Software Foundation.
       
     8  *
       
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
       
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    12  * version 2 for more details (a copy is included in the LICENSE file that
       
    13  * accompanied this code).
       
    14  *
       
    15  * You should have received a copy of the GNU General Public License version
       
    16  * 2 along with this work; if not, write to the Free Software Foundation,
       
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    18  *
       
    19  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
       
    20  * CA 95054 USA or visit www.sun.com if you need additional information or
       
    21  * have any questions.
       
    22  */
       
    23 
       
    24 // Read printssl.sh, this Java program starts an SSL server
       
    25 
       
    26 import java.net.ServerSocket;
       
    27 import javax.net.ssl.SSLServerSocketFactory;
       
    28 import javax.net.ssl.SSLSocket;
       
    29 
       
    30 public class PrintSSL {
       
    31     public static void main(String[] args) throws Exception {
       
    32         System.setProperty("javax.net.ssl.keyStorePassword", "passphrase");
       
    33         System.setProperty("javax.net.ssl.keyStore",
       
    34                 System.getProperty("test.src", "./") + "/../../ssl/etc/keystore");
       
    35         SSLServerSocketFactory sslssf =
       
    36                 (SSLServerSocketFactory) SSLServerSocketFactory.getDefault();
       
    37         final ServerSocket server = sslssf.createServerSocket(0);
       
    38         System.out.println(server.getLocalPort());
       
    39         System.out.flush();
       
    40         Thread t = new Thread() {
       
    41             public void run() {
       
    42                 try {
       
    43                     Thread.sleep(30000);
       
    44                     server.close();
       
    45                 } catch (Exception e) {
       
    46                     ;
       
    47                 }
       
    48                 throw new RuntimeException("Timeout");
       
    49             }
       
    50         };
       
    51         t.setDaemon(true);
       
    52         t.start();
       
    53         ((SSLSocket)server.accept()).startHandshake();
       
    54     }
       
    55 }