From 3d0c850e108a6aca88c82417a01657848e7d92e2 Mon Sep 17 00:00:00 2001 From: Go Hosohara Date: Thu, 27 Jul 2017 16:46:27 +0900 Subject: [PATCH] Change to send certificate message on SSLv3 even though certificate size is 0. --- src/internal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal.c b/src/internal.c index 298b6b7bd..079e8de0f 100644 --- a/src/internal.c +++ b/src/internal.c @@ -17417,7 +17417,7 @@ void PickHashSigAlgo(WOLFSSL* ssl, const byte* hashSigAlgo, if (ssl->buffers.certificate && ssl->buffers.certificate->buffer && ssl->buffers.key && ssl->buffers.key->buffer) ssl->options.sendVerify = SEND_CERT; - else if (IsTLS(ssl)) + else ssl->options.sendVerify = SEND_BLANK_CERT; if (IsEncryptionOn(ssl, 0))