Skip to content

Commit

Permalink
Allow DHE too
Browse files Browse the repository at this point in the history
  • Loading branch information
lrstewart committed Dec 9, 2024
1 parent 1b6544a commit 333fab4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integrationv2/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def compatible_with_cipher(self, cipher):
if self.algorithm == 'RSAPSS':
if cipher.algorithm != 'RSA':
return False
if 'ECDHE' in cipher.name:
if 'DHE' in cipher.name:
return True
return False

Expand Down

0 comments on commit 333fab4

Please sign in to comment.