Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
JinhangZhang committed Jan 28, 2025
1 parent e5a5fd0 commit 284649e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
import java.nio.*;

import jdk.test.lib.Utils;
import jdk.test.lib.security.SecurityUtils;

public class CheckTlsEngineResults {

Expand Down
1 change: 1 addition & 0 deletions test/jdk/javax/net/ssl/SSLEngine/ConnectionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
import java.nio.*;

import jdk.test.lib.Utils;
import jdk.test.lib.security.SecurityUtils;

public class ConnectionTest {

Expand Down
2 changes: 1 addition & 1 deletion test/jdk/javax/net/ssl/SSLEngine/EngineCloseOnAlert.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class EngineCloseOnAlert {
private static KeyManagerFactory KMF;
private static TrustManagerFactory TMF;

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


Expand Down
1 change: 1 addition & 0 deletions test/jdk/javax/net/ssl/SSLEngine/LargeBufs.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
import java.util.Random;

import jdk.test.lib.Utils;
import jdk.test.lib.security.SecurityUtils;

public class LargeBufs {

Expand Down
1 change: 1 addition & 0 deletions test/jdk/javax/net/ssl/SSLParameters/SignatureSchemes.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
* @bug 8280494
* @summary (D)TLS signature schemes
* @library /javax/net/ssl/templates
* /test/lib
* @run main/othervm SignatureSchemes
*/

Expand Down
1 change: 1 addition & 0 deletions test/jdk/javax/net/ssl/SSLSocket/ClientExcOnAlert.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
import java.security.cert.X509Certificate;

import jdk.test.lib.Utils;
import jdk.test.lib.security.SecurityUtils;

public class ClientExcOnAlert {
// This is a PKCS#12 keystore created with the following command:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
import java.security.Security;

import jdk.test.lib.Utils;
import jdk.test.lib.security.SecurityUtils;

public class SSLSocketExplorerFailure {

Expand Down

0 comments on commit 284649e

Please sign in to comment.