Skip to content

Commit f09f77d

Browse files
committed
temporally remove revertJKSToPKCS12
1 parent fbc8e1b commit f09f77d

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

test/jdk/javax/net/ssl/FixingJavadocs/ImplicitHandshake.java

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
* @bug 4387882
2727
* @summary Need to revisit the javadocs for JSSE, especially the
2828
* promoted classes.
29-
* @library /test/lib
3029
* @run main/othervm ImplicitHandshake
3130
*
3231
* SunJSSE does not support dynamic system properties, no way to re-use
@@ -38,9 +37,6 @@
3837
import java.net.*;
3938
import javax.net.ssl.*;
4039

41-
import jdk.test.lib.Utils;
42-
import jdk.test.lib.security.SecurityUtils;
43-
4440
public class ImplicitHandshake {
4541

4642
/*
@@ -195,10 +191,6 @@ public static void main(String[] args) throws Exception {
195191
System.getProperty("test.src", "./") + "/" + pathToStores +
196192
"/" + trustStoreFile;
197193

198-
if (SecurityUtils.isFIPS()) {
199-
keyFilename = SecurityUtils.revertJKSToPKCS12(keyFilename, passwd);
200-
trustFilename = SecurityUtils.revertJKSToPKCS12(trustFilename, passwd);
201-
}
202194
System.setProperty("javax.net.ssl.keyStore", keyFilename);
203195
System.setProperty("javax.net.ssl.keyStorePassword", passwd);
204196
System.setProperty("javax.net.ssl.trustStore", trustFilename);
@@ -300,4 +292,4 @@ public void run() {
300292
doClientSide();
301293
}
302294
}
303-
}
295+
}

0 commit comments

Comments
 (0)