Skip to content

Commit ea8a45d

Browse files
committed
update
1 parent 8dcad34 commit ea8a45d

File tree

7 files changed

+7
-1
lines changed

7 files changed

+7
-1
lines changed

test/jdk/javax/net/ssl/SSLEngine/CheckTlsEngineResults.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
import java.nio.*;
4242

4343
import jdk.test.lib.Utils;
44+
import jdk.test.lib.security.SecurityUtils;
4445

4546
public class CheckTlsEngineResults {
4647

test/jdk/javax/net/ssl/SSLEngine/ConnectionTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
import java.nio.*;
4646

4747
import jdk.test.lib.Utils;
48+
import jdk.test.lib.security.SecurityUtils;
4849

4950
public class ConnectionTest {
5051

test/jdk/javax/net/ssl/SSLEngine/EngineCloseOnAlert.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public class EngineCloseOnAlert {
5757
private static KeyManagerFactory KMF;
5858
private static TrustManagerFactory TMF;
5959

60-
private static final String[] ONECIPHER = (Utils.isFIPS()) ?
60+
private static final String[] ONECIPHER = (SecurityUtils.isFIPS()) ?
6161
new String[] { "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256" } : new String[] { "TLS_RSA_WITH_AES_128_CBC_SHA" };
6262

6363

test/jdk/javax/net/ssl/SSLEngine/LargeBufs.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
import java.util.Random;
4545

4646
import jdk.test.lib.Utils;
47+
import jdk.test.lib.security.SecurityUtils;
4748

4849
public class LargeBufs {
4950

test/jdk/javax/net/ssl/SSLParameters/SignatureSchemes.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
* @bug 8280494
3030
* @summary (D)TLS signature schemes
3131
* @library /javax/net/ssl/templates
32+
* /test/lib
3233
* @run main/othervm SignatureSchemes
3334
*/
3435

test/jdk/javax/net/ssl/SSLSocket/ClientExcOnAlert.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
import java.security.cert.X509Certificate;
6161

6262
import jdk.test.lib.Utils;
63+
import jdk.test.lib.security.SecurityUtils;
6364

6465
public class ClientExcOnAlert {
6566
// This is a PKCS#12 keystore created with the following command:

test/jdk/javax/net/ssl/ServerName/SSLSocketExplorerFailure.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
import java.security.Security;
5050

5151
import jdk.test.lib.Utils;
52+
import jdk.test.lib.security.SecurityUtils;
5253

5354
public class SSLSocketExplorerFailure {
5455

0 commit comments

Comments
 (0)