Re: RFR: 8277881 Missing SessionID in TLS1.3 resumption in compatibility mode [v2]

2021-12-23 Thread Anthony Scarpino
On Thu, 23 Dec 2021 21:47:53 GMT, Daniel Jeliński wrote: >> All TLS 1.3 handshakes in compatibility mode must send a non-empty SessionID >> field. Currently TLS1.3 session resumptions are sending empty session ID. >> This patch fixes that problem. >> >> All jdk_core tests passed. The newly add

Re: RFR: 8277881 Missing SessionID in TLS1.3 resumption in compatibility mode [v2]

2021-12-23 Thread Daniel Jeliński
On Tue, 21 Dec 2021 21:25:53 GMT, Anthony Scarpino wrote: >> Daniel Jeliński has updated the pull request incrementally with one >> additional commit since the last revision: >> >> Update copyright year > > Please add " 2021," to the copyright of ResumeTLS13withSNI.java. > I have run all the

Re: RFR: 8277881 Missing SessionID in TLS1.3 resumption in compatibility mode [v2]

2021-12-23 Thread Daniel Jeliński
> All TLS 1.3 handshakes in compatibility mode must send a non-empty SessionID > field. Currently TLS1.3 session resumptions are sending empty session ID. > This patch fixes that problem. > > All jdk_core tests passed. The newly added check passes with the patch, fails > without it. Daniel Jel

Re: RFR: 8277881 Missing SessionID in TLS1.3 resumption in compatibility mode

2021-12-21 Thread Anthony Scarpino
On Mon, 29 Nov 2021 08:42:22 GMT, Daniel Jeliński wrote: > All TLS 1.3 handshakes in compatibility mode must send a non-empty SessionID > field. Currently TLS1.3 session resumptions are sending empty session ID. > This patch fixes that problem. > > All jdk_core tests passed. The newly added ch

RFR: 8277881 Missing SessionID in TLS1.3 resumption in compatibility mode

2021-11-29 Thread Daniel Jeliński
All TLS 1.3 handshakes in compatibility mode must send a non-empty SessionID field. Currently TLS1.3 session resumptions are sending empty session ID. This patch fixes that problem. All jdk_core tests passed. The newly added check passes with the patch, fails without it. - Commit