count ECDH-RSA ciphers as ECDSA

the ECDH parameters come from server certificate - the point
on elliptic curve. The RSA comes from the signature on the certificate
which comes from CA
This commit is contained in:
Hubert Kario 2014-06-24 15:34:44 +02:00
parent 26c7b0e0d7
commit 142726c4fd
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ for r,d,flist in os.walk(path):
RSA = True
""" save the key size """
if 'ECDSA' in entry['cipher']:
if 'ECDSA' in entry['cipher'] or 'ECDH-RSA' in entry['cipher']:
ECDSA = True
tempecckeystats[entry['pubkey'][0]] = 1
elif 'DSS' in entry['cipher']: