Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P3
-
Resolution: Fixed
-
Affects Version/s: 7u65
-
Fix Version/s: 9
-
Component/s: security-libs
-
Labels:
-
Subcomponent:
-
Resolved In Build:b26
-
Verification:Verified
Backports
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8063864 | 8u45 | Xuelei Fan | P3 | Resolved | Fixed | b01 |
JDK-8057756 | 8u40 | Sean Coffey | P3 | Resolved | Fixed | b08 |
JDK-8070132 | emb-8u47 | Xuelei Fan | P3 | Resolved | Fixed | team |
JDK-8072304 | 7u85 | Xuelei Fan | P3 | Resolved | Fixed | b01 |
JDK-8057757 | 7u80 | Sean Coffey | P3 | Resolved | Fixed | b03 |
Description
In server side,
-Use SSLServerSocket class created in SSLServerSocketFactory
-Cipher suite : TLS_RSA_WITH_AES_128_CBC_SHA256 is set to
setEnabledCipherSuites()
-Crypto protocol : Default value
In client side,
-Use SSLServerSocket class created in SSLServerSocketFactory
-Cipher suite : Set all the cipher suites by
SSLSocket.getSupportedCipherSuites() to SSLSocket.setEnabledCipherSuites()
-Crypto protocol :Set all the encrypto protocols by
SSLSocket.getSupportedProtocols() to SSLSocket.setEnabledProtocols()
-All the supported cipher suites and crypto protcols are enabled.
Then, The client and server try to communicate in SSL,
javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure
occurs.
Attachments
Issue Links
- backported by
-
JDK-8057756 SSLv2Hello protocol may be filtered out unexpectedly
-
- Resolved
-
-
JDK-8057757 SSLv2Hello protocol may be filtered out unexpectedly
-
- Resolved
-
-
JDK-8063864 SSLv2Hello protocol may be filtered out unexpectedly
-
- Resolved
-
-
JDK-8070132 SSLv2Hello protocol may be filtered out unexpectedly
-
- Resolved
-
-
JDK-8072304 SSLv2Hello protocol may be filtered out unexpectedly
-
- Resolved
-