From 142726c4fdf40e7d8e397eb920ee3c936f2c1024 Mon Sep 17 00:00:00 2001 From: Hubert Kario Date: Tue, 24 Jun 2014 15:34:44 +0200 Subject: [PATCH] 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 --- top1m/parse_results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/top1m/parse_results.py b/top1m/parse_results.py index bdcd304..d95d60c 100644 --- a/top1m/parse_results.py +++ b/top1m/parse_results.py @@ -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']: