From 35e742ecac9239539db016e1282b4cbdf501509c Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Wed, 18 Jul 2018 16:05:49 +0100 Subject: Update code for the final RFC version of TLSv1.3 (RFC8446) Reviewed-by: Ben Kaduk Reviewed-by: Tim Hudson (Merged from https://github.com/openssl/openssl/pull/6741) --- test/asynciotest.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'test/asynciotest.c') diff --git a/test/asynciotest.c b/test/asynciotest.c index 73e415fdd3..5e85cbb044 100644 --- a/test/asynciotest.c +++ b/test/asynciotest.c @@ -227,11 +227,9 @@ static int async_write(BIO *bio, const char *in, int inl) /* * We can't fragment anything after the ServerHello (or CCS <= * TLS1.2), otherwise we get a bad record MAC - * TODO(TLS1.3): Change TLS1_3_VERSION_DRAFT to TLS1_3_VERSION - * before release */ if (contenttype == SSL3_RT_CHANGE_CIPHER_SPEC - || (negversion == TLS1_3_VERSION_DRAFT + || (negversion == TLS1_3_VERSION && msgtype == SSL3_MT_SERVER_HELLO)) { fragment = 0; break; -- cgit v1.2.3