Allow TLS-1.3 ciphersuites in @SECLEVEL=3 and above
[oweals/openssl.git] / ssl / ssl_cert.c
index df5cff79c98475ebe7b5c8ca98c477e225aeb35b..e740a8c25d4c4aa487dc6b4a6b5c9c3dfb40df96 100644 (file)
@@ -947,7 +947,8 @@ static int ssl_security_default_callback(const SSL *s, const SSL_CTX *ctx,
             if (level >= 2 && c->algorithm_enc == SSL_RC4)
                 return 0;
             /* Level 3: forward secure ciphersuites only */
-            if (level >= 3 && !(c->algorithm_mkey & (SSL_kEDH | SSL_kEECDH)))
+            if (level >= 3 && (c->min_tls != TLS1_3_VERSION ||
+                               !(c->algorithm_mkey & (SSL_kEDH | SSL_kEECDH))))
                 return 0;
             break;
         }