count SSLv2 IDEA as insecure

This commit is contained in:
Hubert Kario 2015-03-31 23:45:51 +02:00
parent b673fb976a
commit 37f1d15af1
1 changed files with 2 additions and 1 deletions

View File

@ -209,7 +209,8 @@ for r,d,flist in os.walk(path):
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']:
'RC4-64-MD5' in entry['cipher'] or \
'IDEA-CBC-MD5' in entry['cipher']:
ciphertypes += 1
name = "z:" + entry['cipher']
tempcipherstats[name] = 1