summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2021-11-11 17:31:31 -0500
committerGitHub <noreply@github.com>2021-11-11 22:31:31 +0000
commitbf60d3ebba9817ed7a0f05c26f6f9a542bdd669e (patch)
tree94df4a4ab0e1628cd277be58b2d4e18969280a4a /tests
parent8245d777ba58ac1da357b1a71cc8e33b229060ed (diff)
downloadcryptography-bf60d3ebba9817ed7a0f05c26f6f9a542bdd669e.tar.gz
Run tests/primitives/ (minus a few files) on BoringSSL (#6584)
Diffstat (limited to 'tests')
-rw-r--r--tests/hazmat/primitives/test_rsa.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py
index 63fc215e1..4fb205db4 100644
--- a/tests/hazmat/primitives/test_rsa.py
+++ b/tests/hazmat/primitives/test_rsa.py
@@ -176,7 +176,7 @@ class TestRSA(object):
("public_exponent", "key_size"),
itertools.product(
(3, 65537),
- (1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1536, 2048),
+ (1024, 1536, 2048),
),
)
def test_generate_rsa_keys(self, backend, public_exponent, key_size):