mirror of
https://github.com/mozilla/cipherscan.git
synced 2024-11-05 07:23:42 +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
26c7b0e0d7
commit
142726c4fd
@ -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']:
|
||||
|
Loading…
Reference in New Issue
Block a user