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 committed by Hubert Kario
parent ded65c40df
commit 3bab715012
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,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']: