25 lines
711 B
Diff
25 lines
711 B
Diff
From de9673565c8b01cb3bb1032a8d30eed02ad658c1 Mon Sep 17 00:00:00 2001
|
|
From: wangshuo <wangshuo@kylinos.cn>
|
|
Date: Wed, 11 Dec 2024 00:55:55 +0800
|
|
Subject: [PATCH] expected_algs list to include TLS_SM4
|
|
|
|
---
|
|
Lib/test/test_ssl.py | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
|
|
index 203351b..1e22a05 100644
|
|
--- a/Lib/test/test_ssl.py
|
|
+++ b/Lib/test/test_ssl.py
|
|
@@ -4382,6 +4382,7 @@ class ThreadedTests(unittest.TestCase):
|
|
"AES256", "AES-256",
|
|
# TLS 1.3 ciphers are always enabled
|
|
"TLS_CHACHA20", "TLS_AES",
|
|
+ "TLS_SM4",
|
|
]
|
|
|
|
stats = server_params_test(client_context, server_context,
|
|
--
|
|
2.43.0
|
|
|