python3/0001-expected_algs-list-to-include-TLS_SM4.patch

25 lines
704 B
Diff
Raw Normal View History

2024-12-07 16:31:58 +08:00
From f1b6f59e1883ea5fdb543d2e0554a45d6b756caf Mon Sep 17 00:00:00 2001
From: GuoCe <guoce@kylinos.cn>
Date: Sat, 7 Dec 2024 16:15:49 +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 965c272..453624b 100644
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -4324,6 +4324,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.33.0