JDK-8170995 : Commit in 8133817:TLSv1.2 to JDK 6u incl double call of SSLAAlgorithmConstructor
  • Type: Bug
  • Component: security-libs
  • Sub-Component: java.security
  • Affected Version: 6u131
  • Priority: P3
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2016-12-09
  • Updated: 2017-10-03
  • Resolved: 2016-12-09
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
6u161Fixed
Related Reports
Relates :  
Description
Double call error crept in while TLSv1.2 was being backported to JDK 6u : 

src/share/classes/com/sun/net/ssl/internal/ssl/Handshaker.java
        if (conn != null) {
            algorithmConstraints = new SSLAlgorithmConstraints(conn, true);
            algorithmConstraints = new SSLAlgorithmConstraints(conn, true);
        } else {        // engine != null
            algorithmConstraints = new SSLAlgorithmConstraints(engine, true);
            algorithmConstraints = new SSLAlgorithmConstraints(engine, true);
        }