Details
-
Type:
Bug
-
Status: Resolved
-
Priority:
P4
-
Resolution: Cannot Reproduce
-
Affects Version/s: 8u121, 9
-
Fix Version/s: 10
-
Component/s: security-libs
-
Labels:
-
Subcomponent:
-
Introduced In Build:b01
-
Introduced In Version:
Description
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.
Attachments
Issue Links
- relates to
-
JDK-8169147 Increase the minimum strength of EC keys
-
- Resolved
-
-
JDK-8148516 Increase the minimum strength of EC keys
-
- Closed
-