-
Bug
-
Resolution: Fixed
-
P3
-
7u65
-
b26
-
Verified
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 |
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.
- 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
-