mirror of
https://github.com/mozilla/cipherscan.git
synced 2024-11-14 02:53:41 +01:00
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:
parent
ded65c40df
commit
3bab715012
@ -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']:
|
||||
|
Loading…
Reference in New Issue
Block a user