summaryrefslogtreecommitdiffstats
path: root/apps/s_client.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2018-01-30 15:41:56 +0000
committerMatt Caswell <matt@openssl.org>2018-02-14 15:42:36 +0000
commit6e99ae58c8e1b4a41ae376f91affc7992b0738f7 (patch)
treee64e0773a1fd863e04fc75558c0a1d8da4c346fd /apps/s_client.c
parentcb1c3d1a2714eb69012b079053f7fbcca1acc544 (diff)
Ignore an s_client psk in TLSv1.3 if not TLSv1.3 suitable
The s_client psk_use_session_cb callback has a comment stating that we should ignore a key that isn't suitable for TLSv1.3. However we were actually causing the connection to fail. Changing the return value fixes the issue. Also related to this is that the early_data extension was not marked as TLSv1.3 only which it should be. Fixes #5202 Reviewed-by: Ben Kaduk <kaduk@mit.edu> (Merged from https://github.com/openssl/openssl/pull/5205)
Diffstat (limited to 'apps/s_client.c')
-rw-r--r--apps/s_client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/s_client.c b/apps/s_client.c
index ca2bd0d9b4..eca0a4ac57 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -208,7 +208,7 @@ static int psk_use_session_cb(SSL *s, const EVP_MD *md,
*id = NULL;
*idlen = 0;
*sess = NULL;
- return 0;
+ return 1;
}
usesess = SSL_SESSION_new();
if (usesess == NULL