Skip to content

Commit

Permalink
Only show IANA cipher names
Browse files Browse the repository at this point in the history
  • Loading branch information
mxsasha committed Nov 25, 2024
1 parent 27463be commit 5bdb807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checks/tasks/tls/evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def from_ciphers_accepted(cls, ciphers_accepted: List[CipherSuiteAcceptedByServe

@staticmethod
def _format_str(suites: List[CipherSuite]) -> List[str]:
return [f"{suite.openssl_name} ({suite.name})" for suite in suites]
return [f"{suite.name}" for suite in suites]

@property
def score(self) -> scoring.Score:
Expand Down

0 comments on commit 5bdb807

Please sign in to comment.