From dc785b0fb6867fd8fb2cacd148150b9115a2547b Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Tue, 16 Jun 2020 13:14:12 +0100 Subject: [PATCH] [tls] Default to supporting only TLSv1.1 or above Signed-off-by: Michael Brown --- src/config/crypto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/crypto.h b/src/config/crypto.h index d3c34a94d..cc8657389 100644 --- a/src/config/crypto.h +++ b/src/config/crypto.h @@ -10,7 +10,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); /** Minimum TLS version */ -#define TLS_VERSION_MIN TLS_VERSION_TLS_1_0 +#define TLS_VERSION_MIN TLS_VERSION_TLS_1_1 /** RSA public-key algorithm */ #define CRYPTO_PUBKEY_RSA -- 2.47.2