author | stefank |
Fri, 17 Apr 2015 17:10:38 +0000 | |
changeset 30266 | ef82cd1f2db3 |
parent 28555 | c7bf34f7b215 |
child 31712 | e4d5230193da |
permissions | -rw-r--r-- |
2 | 1 |
/* |
22268
d72c97c708ae
8030829: Add MD5 to jdk.certpath.disabledAlgorithms security property
xuelei
parents:
8991
diff
changeset
|
2 |
* Copyright (c) 2002, 2014, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
* |
|
5506 | 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. |
|
2 | 22 |
*/ |
23 |
||
24 |
/* |
|
25 |
* @test |
|
26 |
* @bug 4496785 |
|
27 |
* @summary Verify that all ciphersuites work in all configurations |
|
28 |
* @author Andreas Sterbenz |
|
29 |
* @run main/othervm/timeout=300 ClientJSSEServerJSSE |
|
30 |
*/ |
|
22268
d72c97c708ae
8030829: Add MD5 to jdk.certpath.disabledAlgorithms security property
xuelei
parents:
8991
diff
changeset
|
31 |
import java.security.Security; |
2 | 32 |
|
33 |
public class ClientJSSEServerJSSE { |
|
34 |
||
35 |
public static void main(String[] args) throws Exception { |
|
28555 | 36 |
// reset the security property to make sure that the algorithms |
37 |
// and keys used in this test are not disabled. |
|
38 |
Security.setProperty("jdk.tls.disabledAlgorithms", ""); |
|
39 |
||
22268
d72c97c708ae
8030829: Add MD5 to jdk.certpath.disabledAlgorithms security property
xuelei
parents:
8991
diff
changeset
|
40 |
// MD5 is used in this test case, don't disable MD5 algorithm. |
d72c97c708ae
8030829: Add MD5 to jdk.certpath.disabledAlgorithms security property
xuelei
parents:
8991
diff
changeset
|
41 |
Security.setProperty( |
d72c97c708ae
8030829: Add MD5 to jdk.certpath.disabledAlgorithms security property
xuelei
parents:
8991
diff
changeset
|
42 |
"jdk.certpath.disabledAlgorithms", "MD2, RSA keySize < 1024"); |
d72c97c708ae
8030829: Add MD5 to jdk.certpath.disabledAlgorithms security property
xuelei
parents:
8991
diff
changeset
|
43 |
|
2 | 44 |
CipherTest.main(new JSSEFactory(), args); |
45 |
} |
|
46 |
||
47 |
private static class JSSEFactory extends CipherTest.PeerFactory { |
|
48 |
||
49 |
String getName() { |
|
50 |
return "Client JSSE - Server JSSE"; |
|
51 |
} |
|
52 |
||
53 |
CipherTest.Client newClient(CipherTest cipherTest) throws Exception { |
|
54 |
return new JSSEClient(cipherTest); |
|
55 |
} |
|
56 |
||
57 |
CipherTest.Server newServer(CipherTest cipherTest) throws Exception { |
|
58 |
return new JSSEServer(cipherTest); |
|
59 |
} |
|
60 |
} |
|
61 |
} |