From f31e309a0703bb0b88cde2aaf3b252f0d6e5e6f2 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Fri, 1 Sep 2023 14:15:39 -0400 Subject: [PATCH] Update comment (#9529) --- tests/wycheproof/test_rsa.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/wycheproof/test_rsa.py b/tests/wycheproof/test_rsa.py index 48d20f316..996b3cd52 100644 --- a/tests/wycheproof/test_rsa.py +++ b/tests/wycheproof/test_rsa.py @@ -19,7 +19,8 @@ _DIGESTS = { "SHA-256": hashes.SHA256(), "SHA-384": hashes.SHA384(), "SHA-512": hashes.SHA512(), - # Not supported by OpenSSL for RSA signing + # Not supported by OpenSSL<3 for RSA signing. + # Enable these when we require CRYPTOGRAPHY_OPENSSL_300_OR_GREATER "SHA-512/224": None, "SHA-512/256": None, "SHA3-224": hashes.SHA3_224(),