Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion jdk/src/share/classes/sun/security/ssl/SSLSessionImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -401,8 +401,12 @@ void setStatusResponses(List<byte[]> responses) {
* maximum lifetime in any case.
*/
boolean isRejoinable() {
// TLS 1.3 can have no session id
if (protocolVersion.useTLS13PlusSpec()) {
return (!invalidated && isLocalAuthenticationValid());
}
return sessionId != null && sessionId.length() != 0 &&
!invalidated && isLocalAuthenticationValid();
!invalidated && isLocalAuthenticationValid();
}

@Override
Expand Down