-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
8u121, 9
-
b01
javax/net/ssl/ciphersuites/DisabledAlgorithms.java contains this fragment:
// some of the certs in our test are weak; disable
Security.setProperty("jdk.certpath.disabledAlgorithms", "");
System.out.println("jdk.certpath.disabledAlgorithms = "
+ Security.getProperty("jdk.cerpath.disabledAlgorithms"));
There's a typo in the property name on the last line - "cerpath" instead of "certpath". Does not affect the test result.
// some of the certs in our test are weak; disable
Security.setProperty("jdk.certpath.disabledAlgorithms", "");
System.out.println("jdk.certpath.disabledAlgorithms = "
+ Security.getProperty("jdk.cerpath.disabledAlgorithms"));
There's a typo in the property name on the last line - "cerpath" instead of "certpath". Does not affect the test result.
- relates to
-
JDK-8169147 Increase the minimum strength of EC keys
- Resolved
-
JDK-8148516 Increase the minimum strength of EC keys
- Closed