Skip to content

Commit 996dfe0

Browse files
committed
u
1 parent 788cb47 commit 996dfe0

File tree

2 files changed

+0
-28
lines changed

2 files changed

+0
-28
lines changed

test/jdk/javax/net/ssl/TLSCommon/TLSTest.java

-25
Original file line numberDiff line numberDiff line change
@@ -63,20 +63,9 @@
6363
* @library /test/lib
6464
* @summary Test TLS with different types of supported keys.
6565
* @run main/othervm TLSTest TLSv1.3 rsa_pkcs1_sha1 TLS_AES_128_GCM_SHA256
66-
* @run main/othervm
67-
* -Djdk.tls.client.SignatureSchemes=ecdsa_brainpoolP512r1tls13_sha512
68-
* -Djdk.tls.namedGroups=brainpoolP512r1tls13
69-
* -Djdk.tls.server.SignatureSchemes=ecdsa_brainpoolP512r1tls13_sha512
70-
* TLSTest TLSv1.3 ecdsa_brainpoolP512r1_sha512 TLS_AES_128_GCM_SHA256
7166
* @run main/othervm TLSTest TLSv1.3 rsa_pkcs1_sha256 TLS_AES_128_GCM_SHA256
7267
* @run main/othervm TLSTest TLSv1.3 rsa_pkcs1_sha384 TLS_AES_128_GCM_SHA256
7368
* @run main/othervm TLSTest TLSv1.3 rsa_pkcs1_sha512 TLS_AES_128_GCM_SHA256
74-
* @run main/othervm TLSTest TLSv1.3 ec_rsa_pkcs1_sha256 TLS_AES_128_GCM_SHA256
75-
* @run main/othervm TLSTest TLSv1.3 ecdsa_sha1 TLS_AES_128_GCM_SHA256
76-
* @run main/othervm TLSTest TLSv1.3 ecdsa_secp384r1_sha384
77-
* TLS_AES_128_GCM_SHA256
78-
* @run main/othervm TLSTest TLSv1.3 ecdsa_secp521r1_sha512
79-
* TLS_AES_128_GCM_SHA256
8069
* @run main/othervm TLSTest TLSv1.3 rsa_pss_rsae_sha256 TLS_AES_128_GCM_SHA256
8170
* @run main/othervm TLSTest TLSv1.3 rsa_pss_rsae_sha384 TLS_AES_128_GCM_SHA256
8271
* @run main/othervm TLSTest TLSv1.3 rsa_pss_rsae_sha512 TLS_AES_128_GCM_SHA256
@@ -88,12 +77,6 @@
8877
* @run main/othervm TLSTest TLSv1.3 rsa_pkcs1_sha256 TLS_AES_256_GCM_SHA384
8978
* @run main/othervm TLSTest TLSv1.3 rsa_pkcs1_sha384 TLS_AES_256_GCM_SHA384
9079
* @run main/othervm TLSTest TLSv1.3 rsa_pkcs1_sha512 TLS_AES_256_GCM_SHA384
91-
* @run main/othervm TLSTest TLSv1.3 ec_rsa_pkcs1_sha256 TLS_AES_256_GCM_SHA384
92-
* @run main/othervm TLSTest TLSv1.3 ecdsa_sha1 TLS_AES_256_GCM_SHA384
93-
* @run main/othervm TLSTest TLSv1.3 ecdsa_secp384r1_sha384
94-
* TLS_AES_256_GCM_SHA384
95-
* @run main/othervm TLSTest TLSv1.3 ecdsa_secp521r1_sha512
96-
* TLS_AES_256_GCM_SHA384
9780
* @run main/othervm TLSTest TLSv1.3 rsa_pss_rsae_sha256 TLS_AES_256_GCM_SHA384
9881
* @run main/othervm TLSTest TLSv1.3 rsa_pss_rsae_sha384 TLS_AES_256_GCM_SHA384
9982
* @run main/othervm TLSTest TLSv1.3 rsa_pss_rsae_sha512 TLS_AES_256_GCM_SHA384
@@ -108,14 +91,6 @@
10891
* TLS_RSA_WITH_AES_256_GCM_SHA384
10992
* @run main/othervm TLSTest TLSv1.2 rsa_pkcs1_sha512
11093
* TLS_RSA_WITH_AES_128_GCM_SHA256
111-
* @run main/othervm TLSTest TLSv1.2 ec_rsa_pkcs1_sha256
112-
* TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
113-
* @run main/othervm TLSTest TLSv1.2 ecdsa_sha1
114-
* TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
115-
* @run main/othervm TLSTest TLSv1.2 ecdsa_secp384r1_sha384
116-
* TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
117-
* @run main/othervm TLSTest TLSv1.2 ecdsa_secp521r1_sha512
118-
* TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA
11994
* @run main/othervm TLSTest TLSv1.2 rsa_pss_rsae_sha256
12095
* TLS_RSA_WITH_AES_256_CBC_SHA256
12196
* @run main/othervm TLSTest TLSv1.2 rsa_pss_rsae_sha384

test/jdk/javax/net/ssl/ciphersuites/DisabledAlgorithms.java

-3
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,8 @@
2525
* @test
2626
* @bug 8076221 8211883 8279164
2727
* @summary Check if weak cipher suites are disabled
28-
<<<<<<< HEAD
2928
* @library /javax/net/ssl/templates
30-
=======
3129
* @library /test/lib
32-
>>>>>>> 6d1b21c539d (Update TLS tests to be run in FIPS 140-3 mode.)
3330
* @modules jdk.crypto.ec
3431
* @run main/othervm DisabledAlgorithms default
3532
* @run main/othervm DisabledAlgorithms empty

0 commit comments

Comments
 (0)