Skip to content

Commit

Permalink
[#545]Improve handling of Brainpool curves
Browse files Browse the repository at this point in the history
  • Loading branch information
nabla-c0d3 committed Nov 20, 2022
1 parent 463c084 commit af290b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def get_include_files() -> List[Tuple[str, str]]:
entry_points={"console_scripts": ["sslyze = sslyze.__main__:main"]},
# Dependencies
install_requires=[
"nassl>=4.0.1,<5",
"nassl>=5.0.0,<6",
"cryptography>=2.6,<39",
"tls-parser>=2,<3",
"pydantic>=1.7,<1.11",
Expand Down
2 changes: 1 addition & 1 deletion sslyze/plugins/elliptic_curves_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def scan_jobs_for_scan_command(
# https://tools.ietf.org/html/rfc8446#section-4.2.7
return [
ScanJob(function_to_call=_test_curve, function_arguments=[server_info, curve_nid])
for curve_nid in OpenSslEcNidEnum
for curve_nid in OpenSslEcNidEnum.get_supported_by_ssl_client()
]

@classmethod
Expand Down

0 comments on commit af290b5

Please sign in to comment.