Skip to content

Commit

Permalink
Update Cipher List for Pending Fetch Test (EFForg#18964)
Browse files Browse the repository at this point in the history
* Update cipher list
* Adjust cipher suites that are cross supported in FireFox ESR and Chrome
  • Loading branch information
zoracon authored Mar 9, 2020
1 parent fb8f62a commit 1ba3d77
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/rules/src/https_everywhere_checker/http_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,10 @@ def getCAPath(self, platform):
class FetchOptions(object):
"""HTTP fetcher options like timeouts."""

# The default list of cipher suites that ships with Firefox 51.0.1
_DEFAULT_CIPHERLIST = "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA:AES128-SHA:AES256-SHA:DES-CBC3-SHA"
# The default list of cipher suites that are supported in Firefox ESR, Chrome
# These naming formats are from OpenSSL
# This list is crosschecked with https://wiki.mozilla.org/Security/Cipher_Suites and https://clienttest.ssllabs.com
_DEFAULT_CIPHERLIST = "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384"

def __init__(self, config):
"""Parse options from [http] section
Expand Down

0 comments on commit 1ba3d77

Please sign in to comment.