Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/sun/security/tools/keytool/PrintSSL.java
38853 views
1
/*
2
* Copyright (c) 2008, Oracle and/or its affiliates. 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* 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", "./") + "/../../../../javax/net/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
}
56
57