diff --git a/top1m/parse_results.py b/top1m/parse_results.py index 6c5326a..09766a3 100644 --- a/top1m/parse_results.py +++ b/top1m/parse_results.py @@ -187,7 +187,10 @@ for r,d,flist in os.walk(path): temp_client_incompat[client_name][entry['cipher']] = 1 """ store the ciphers supported """ - if 'ADH' in entry['cipher'] or 'AECDH' in entry['cipher']: + if 'ADH' in entry['cipher'] or 'AECDH' in entry['cipher'] or \ + 'EXP' in entry['cipher'] or \ + 'DES-CBC3-MD5' in entry['cipher'] or \ + 'RC4-64-MD5' in entry['cipher']: ciphertypes += 1 name = "z:" + entry['cipher'] tempcipherstats[name] = 1