diff --git a/tests/core/lib/test_ssl.py b/tests/core/lib/test_ssl.py index e194a5db2..7665de646 100644 --- a/tests/core/lib/test_ssl.py +++ b/tests/core/lib/test_ssl.py @@ -7,9 +7,9 @@ SslEngine, SslLibrary, create_tcp_socket, - is_weak_cipher_suite, is_weak_hash_algo, is_weak_ssl_version, + is_weak_cipher_suite, ) @@ -463,6 +463,13 @@ def test_is_weak_cipher_suite_ssl_error(self, mock_context, mock_socket, connect ("sha1", True), ("test_algo", False), ("sha256", False), + ("md2WithRSAEncryption", True), + ("md4WithRSAEncryption", True), + ("md5WithRSAEncryption", True), + ("sha1WithRSAEncryption", True), + ("SHA1WithRSAEncryption", True), + ("MD5WithRSAEncryption", True), + ("sha256WithRSAEncryption", False), ], ) def test_is_weak_hash_algo(self, algo, expected):