aboutsummaryrefslogtreecommitdiff
path: root/tests/hazmat/primitives/test_dh.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/hazmat/primitives/test_dh.py')
-rw-r--r--tests/hazmat/primitives/test_dh.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/hazmat/primitives/test_dh.py b/tests/hazmat/primitives/test_dh.py
index 9caded2..4b3b63a 100644
--- a/tests/hazmat/primitives/test_dh.py
+++ b/tests/hazmat/primitives/test_dh.py
@@ -164,10 +164,7 @@ class TestDH:
)
def test_dh_parameters_allows_rfc3526_groups(self, backend, vector):
p = int.from_bytes(binascii.unhexlify(vector["p"]), "big")
- if (
- backend._fips_enabled
- and p.bit_length() < backend._fips_dh_min_modulus
- ):
+ if backend._fips_enabled and p < backend._fips_dh_min_modulus:
pytest.skip("modulus too small for FIPS mode")
params = dh.DHParameterNumbers(p, int(vector["g"]))