Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/javax/net/ssl/DTLS/WeakCipherSuite.java
41152 views
1
/*
2
* Copyright (c) 2015, 2019, 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
// SunJSSE does not support dynamic system properties, no way to re-use
25
// system properties in samevm/agentvm mode.
26
27
/*
28
* @test
29
* @bug 8043758
30
* @summary Datagram Transport Layer Security (DTLS)
31
* @modules java.base/sun.security.util
32
* @library /test/lib
33
* @build DTLSOverDatagram
34
* @run main/othervm WeakCipherSuite TLS_DH_anon_WITH_AES_128_GCM_SHA256
35
* @run main/othervm WeakCipherSuite SSL_DH_anon_WITH_DES_CBC_SHA
36
* @run main/othervm WeakCipherSuite SSL_RSA_WITH_DES_CBC_SHA
37
* @run main/othervm WeakCipherSuite SSL_DHE_RSA_WITH_DES_CBC_SHA
38
* @run main/othervm WeakCipherSuite SSL_DHE_DSS_WITH_DES_CBC_SHA
39
*/
40
41
import javax.net.ssl.SSLEngine;
42
import java.security.Security;
43
44
/**
45
* Test common DTLS weak cipher suites.
46
*/
47
public class WeakCipherSuite extends DTLSOverDatagram {
48
49
// use the specific cipher suite
50
volatile static String cipherSuite;
51
52
public static void main(String[] args) throws Exception {
53
// reset security properties to make sure that the algorithms
54
// and keys used in this test are not disabled.
55
Security.setProperty("jdk.tls.disabledAlgorithms", "");
56
Security.setProperty("jdk.certpath.disabledAlgorithms", "");
57
58
cipherSuite = args[0];
59
60
WeakCipherSuite testCase = new WeakCipherSuite();
61
testCase.runTest(testCase);
62
}
63
64
@Override
65
SSLEngine createSSLEngine(boolean isClient) throws Exception {
66
SSLEngine engine = super.createSSLEngine(isClient);
67
engine.setEnabledCipherSuites(new String[]{cipherSuite});
68
69
return engine;
70
}
71
}
72
73