From 3186212159fb18af683bd0416088a43daa2527c7 Mon Sep 17 00:00:00 2001 From: Hubert Kario Date: Wed, 12 Dec 2018 16:08:54 +0100 Subject: [PATCH] de-engrishify error message --- analyze.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/analyze.py b/analyze.py index 851b082..9eac308 100755 --- a/analyze.py +++ b/analyze.py @@ -223,7 +223,7 @@ def is_intermediate(results): failures[lvl].append("use a certificate signed with %s" % " or ".join(inter["certificate_signatures"])) isinter = False if not has_pfs: - failures[lvl].append("consider using DHE of at least 2048bits and ECC of 256bits and greater") + failures[lvl].append("consider using DHE of at least 2048bits and ECC 256bit and greater") if not has_ocsp: failures[lvl].append("consider enabling OCSP Stapling") if results['serverside'] != 'True': @@ -272,7 +272,7 @@ def is_modern(results): failures[lvl].append("use a certificate signed with %s" % " or ".join(modern["certificate_signatures"])) ismodern = False if not has_pfs: - failures[lvl].append("use DHE of at least 2048bits and ECC of at 256bits and greater") + failures[lvl].append("use DHE of at least 2048bits and ECC 256bit and greater") ismodern = False if not has_ocsp: failures[lvl].append("consider enabling OCSP Stapling")