JDK-8158111 : Make handling of 3rd party providers more stable
  • Type: Bug
  • Component: security-libs
  • Sub-Component: javax.net.ssl
  • Affected Version: 9
  • Priority: P4
  • Status: Closed
  • Resolution: Fixed
  • Submitted: 2016-05-29
  • Updated: 2016-11-28
  • Resolved: 2016-05-30
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 6 JDK 7 JDK 8 JDK 9
6u131Fixed 7u121Fixed 8u102Fixed 9 b122Fixed
Related Reports
Duplicate :  
Description
src/java.base/share/classes/sun/security/ssl/RSAClientKeyExchange.java:

When doing the debug printin:

                    System.out.println("The Cipher provider " +
                        cipher.getProvider().getName() +
                        " caused exception: " + iue.getMessage());

cipher.getProvider() may throw an exception, which will cause the failOver branch get skipped.